{"_id":"postcss-custom-properties","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"dist-tags":{"latest":"15.0.1"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use Custom Properties Queries in CSS","readme":"# PostCSS Custom Properties [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-custom-properties --save-dev`\n\n[PostCSS Custom Properties] lets you use Custom Properties in CSS, following\nthe [CSS Custom Properties] specification.\n\n[!['Can I use' table](https://caniuse.bitsofco.de/image/css-variables.png)](https://caniuse.com/#feat=css-variables)\n\n```css\n:root {\n\t--color-blue-dark: rgb(0, 61, 184);\n\t--color-blue-light: rgb(0, 217, 255);\n\t--color-pink: rgb(255, 192, 211);\n\t--text-color: var(--color-pink);\n}\n\n.element {\n\t/* custom props */\n\t--border-color: var(--color-blue-light);\n\n\t/* props */\n\tborder: 1px solid var(--border-color);\n\tcolor: var(--text-color);\n}\n\n.element--dark {\n\t--border-color: var(--color-blue-dark);\n}\n\n/* becomes */\n\n:root {\n\t--color-blue-dark: rgb(0, 61, 184);\n\t--color-blue-light: rgb(0, 217, 255);\n\t--color-pink: rgb(255, 192, 211);\n\t--text-color: var(--color-pink);\n}\n\n.element {\n\t/* custom props */\n\t--border-color: var(--color-blue-light);\n\n\t/* props */\n\tborder: 1px solid rgb(0, 217, 255);\n\tborder: 1px solid var(--border-color);\n\tcolor: rgb(255, 192, 211);\n\tcolor: var(--text-color);\n}\n\n.element--dark {\n\t--border-color: var(--color-blue-dark);\n}\n```\n\n**Note:** \n- Only processes variables that were defined in the `:root` or `html` selector.\n- Locally defined variables will be used as fallbacks only within the same rule, but not elsewhere.\n- Fallback values in `var()` will be used if the variable was not defined in the `:root` or `html` selector.\n\n## Usage\n\nAdd [PostCSS Custom Properties] to your project:\n\n```bash\nnpm install postcss postcss-custom-properties --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssCustomProperties = require('postcss-custom-properties');\n\npostcss([\n\tpostcssCustomProperties(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n\n\n## Options\n\n### preserve\n\nThe `preserve` option determines whether properties using\ncustom properties should be preserved in their original form. By default these are preserved.\n\nCustom property declarations are always preserved only `var()` functions can be omitted.\n\n```js\npostcssCustomProperties({ preserve: false })\n```\n\n```css\n:root {\n\t--color-blue-dark: rgb(0, 61, 184);\n\t--color-blue-light: rgb(0, 217, 255);\n\t--color-pink: rgb(255, 192, 211);\n\t--text-color: var(--color-pink);\n}\n\n.element {\n\t/* custom props */\n\t--border-color: var(--color-blue-light);\n\n\t/* props */\n\tborder: 1px solid var(--border-color);\n\tcolor: var(--text-color);\n}\n\n.element--dark {\n\t--border-color: var(--color-blue-dark);\n}\n\n/* becomes */\n\n:root {\n\t--color-blue-dark: rgb(0, 61, 184);\n\t--color-blue-light: rgb(0, 217, 255);\n\t--color-pink: rgb(255, 192, 211);\n\t--text-color: var(--color-pink);\n}\n\n.element {\n\t/* custom props */\n\t--border-color: var(--color-blue-light);\n\n\t/* props */\n\tborder: 1px solid var(--border-color);\n\tcolor: rgb(255, 192, 211);\n}\n\n.element--dark {\n\t--border-color: var(--color-blue-dark);\n}\n```\n\n## Modular CSS Processing\n\nIf you're using Modular CSS such as, CSS Modules, `postcss-loader` or `vanilla-extract` to name a few, you'll probably\nnotice that custom properties are not being resolved. This happens because each file is processed separately so\nunless you import the custom properties definitions in each file, they won't be resolved.\n\nTo overcome this, we recommend using the [PostCSS Global Data](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-global-data#readme)\nplugin which allows you to pass a list of files that will be globally available. The plugin won't inject any extra code\nin the output but will provide the context needed to resolve custom properties.\n\nFor it to run it needs to be placed before the [PostCSS Custom Properties] plugin.\n\n```js\nconst postcss = require('postcss');\nconst postcssCustomProperties = require('postcss-custom-properties');\nconst postcssGlobalData = require('@csstools/postcss-global-data');\n\npostcss([\n\tpostcssGlobalData({\n\t\tfiles: [\n\t\t\t'path/to/your/custom-selectors.css'\n\t\t]\n\t}),\n\tpostcssCustomProperties(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#custom-properties\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-custom-properties\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Custom Properties]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties\n[CSS Custom Properties]: https://www.w3.org/TR/css-variables-1/\n","repository":{"type":"git","directory":"plugins/postcss-custom-properties","url":"git+https://github.com/csstools/postcss-plugins.git"},"users":{"asaupup":true,"nuwaio":true},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT","versions":{"0.4.0":{"name":"postcss-custom-properties","version":"0.4.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-properties@0.4.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5988ba5f753b942e27657376a24c97da309b6da4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-0.4.0.tgz","integrity":"sha512-KHcW01KUgSLcFDpM8vLQkVs/ymDO3QQl7GB5keIYjG2AOnoNXZhQ0WJlJ1yuLrDyhWMX0YVGSBhb1sYgTGeB/w==","signatures":[{"sig":"MEUCIC06KzqJ4MLX7dw2VD31C6E1UxCHiVH4uvj16IVMcyZVAiEAm+CtX2b7ND595pPcg3TQvtjK+hco+DP5D0klmW84lxU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"5988ba5f753b942e27657376a24c97da309b6da4","gitHead":"bf878aec2fa61d385fda1deff39762979d9eadd2","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.0.2","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.32","dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.0","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"9.0.0":{"name":"postcss-custom-properties","version":"9.0.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@9.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"118b61ff5e6ba66c2d4d33c9b4cfddadcd4e3409","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-9.0.0.tgz","fileCount":8,"integrity":"sha512-4WzxBodNbFrZC9yxTV8xbUcugrUFZhDStCff+TxpkQxWXUp2pOrZtua/Xd2NwzBBHmH553UjGjNkxhCVNZarYA==","signatures":[{"sig":"MEQCIA0ZoQ0NNYeRv5aWWjOjcHXcvg/suxLP3jtlkUPtLDTeAiA/ga7FdkeWuhmlLEeSQeXhKItuBnV57kppSlzMdSRTpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":104938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC391CRA9TVsSAnZWagAAP0gP/0u9d8bvP1Bd/JMV1mgj\nKV92IgAhuTzADmRT6MpxXWxvXcAoRPEc+qMOcSt8TeoIH4DSUHDk9YkOhgbp\nKR9GVsLI5B6G1LWtxrLxLTlGtATc1GlgtHDo0MZptyonIfVE6RibCpYP90Tk\nGIT3duldSne3oAbVLZfYBTyu6NlOhDnh3YOuhY4mWuu0Bvp2loNno5iorqHJ\nEezr39FoSnh9po5rJY37vNXri4dh5ZRJiJH2bbkLDqg9sclH4E7vVI/QTZl9\n9Ddg/WzlcpKpdu4EG5WxN3LlMzT0eydoQnCGJgaQWozWrNB85OFNHJth5Ynh\nZN3PB/y5ebVebNGauG3paXJSfCd/6pQiJBI4xlyA6OXR4FnXkhPaY8AD6uBx\nZSkQJJXYvXODMqYfCT0vaRWDPomhcT8MuUzV1JuG+PZlIjroWVSX7r7FjVCZ\nLr60x6EjwBejftW4ZpDcKriL7N+kgw/edPE+U2GPX4CykbYQBC78NEqtfocc\n7V6kjjYOV4rpnWeeN3y8lWXDF69aoWZwK60LEk9K7kJz0EIT1iNbgzOsdFUt\niYmwyKG7BLYO+8bOmdS+xViBniD+24goZCZNQ5nuMBsF0b6dag9tdPZGa4Qw\n/yzNEwWk2yh8GkfW1L7+9DjQzozuljfdBKM9eQjjF/XesIeu8TYdSFVg9XzM\nj14V\r\n=rqYy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"2d309a8dc8d79732f4d1617c7ffa8561f59adc30","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^3.0.4"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.15.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_9.0.0_1561034612335_0.5096858745028163","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-custom-properties","version":"9.0.1","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@9.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"6a27e32085231b538c1bdf4fda5deffb54775d44","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-9.0.1.tgz","fileCount":8,"integrity":"sha512-NmVFbwqBfKsKoPtTreloejL0zJmD5gaT1b91W5Gf1F/BstS3vnrQ6e/D90Al2xQ434nMxHQcKhIF2i4SVcYVtg==","signatures":[{"sig":"MEQCIFa1Pe4OYbJC8I55BpkahROObz/Er7IUsGxNu7a0vmJ1AiB+yB4kVmd14u5ErEq38Kxa4e0Uq0rTx/dHoVL6pld0NQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":105243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC5ubCRA9TVsSAnZWagAAqWEP/jZfrFzi+6hit6lytMdR\nPPqpQIxq5xSJyCtcWR8msZ2eM6YWX+MqiDbI0BfMaGM7wkdesnxZ8UnfrnN4\nMSpMLblR2oM2O0J5jQ8afLQXoS9YcuV2UwZtRdkfLLSIXMMWG6yr0U8cth1Q\nqWc33D0QSFTtNy2csm3xmtfGcY0VgNSO4Q33miV2KziwpbS2HOW+mW5G34i0\nqCyUEKX3bynssop9grH9x7egobM7Xi+x4pEpBMeR6dxIlBaVoYS5bfjk5z88\nzaFqXF2nv0THsZdbDsmvDt/psJBKPsajXkuYhGC4qGgOG5KVNYACEPK7x9nG\nSH2YtafrEgRLnmL4ZKbNK9xt7oZvw7z7M8ATD27h3QNV+QCfKCROCf9ftPvg\n+RLgyF4bLgQ/bKgg6gwzQOQRfTZvb3yJbC4fmJuVnYBdwebdpv8Pi2QIXcuB\nxn3UEeRozbHVq0qMGpYHVsJwVZyL1ugcoaG6PASaC61/+TWzQ3EtmCe5l6da\n/WcpX3+fFtuRGglTaDCIAEOZdR8VQufGHJcF2Ag7LE0SC/Fi8qU/J5TH2Zlx\ns703/3rbisS/fwc+dNOliAI8KQWABxJpD7MDWxhkimIUuCortIpXP7H52Bwb\nJkbiQTy4H6yUp88i1CPJyWoMSV5O1aKblBO7We/mNZ9s8VB8K/1MwCNTCUgq\naklz\r\n=wElS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"6680f677013b887dc184d3afee43e5452fa3843f","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^3.0.4"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.15.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_9.0.1_1561041818053_0.1706873937095159","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"postcss-custom-properties","version":"9.0.2","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@9.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"091aefaa309826302d53ec6d780fbe1df8f40fd4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-9.0.2.tgz","fileCount":8,"integrity":"sha512-WHaQrEp3gJ6mgxBA4mGJKW6DSVfy2IFnKPFAb2IEulgxGUW8nWp1NkOD/rWR6e2uIuAdnTa0LXSupST7daniAw==","signatures":[{"sig":"MEQCIG2ecRa6U9oqgJ7CTnj2jiRe0iAAFgz1o4LQV8qgddGqAiBCmW1Us6gEYq4fvjGUyvOjhBS2JX6PxPrhnztJuF4FTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":105767,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLHg7CRA9TVsSAnZWagAAFyQP/iu/3tAfYqixd3zSNJJb\nJsTL4S+p13xlEV0CZPr+2cOUAaKXxYbpvAqtm9ZpeHKKlNcvMo/GuVmKA2Mk\nr8Hzg6tchXhj2J7a1aYtfiQJZqFuLtpxtlwQ8MalCld03bkgE42ar1h/Qncv\nmkls0XEQ7hzHasPtCxZQ8h3CcPXqRzr8jZoXRFnn+tmCr9Oif3Gw27v1LVL1\nof2aE6JZyQVVp4UxJv4vu7noe8ftCFTVohbTsYnD503hEPgdfZLSad4hzech\nsRjQ70u3gvWCeXWyhOGscs1iHoPk84t3Sb+xe0ut+pk5ypBkgg0bIT+v2r4Q\nyNZmf4CY6M8MxkCFUicK1apKGmeRz9/ucthL0UFQO6nQNSOU+9JwerQZ3faj\nFSX8dzUoaKAk9Mp2tEkA8Y+5vB119snOcGNx1gIAdW78u3JRTEWUlWuuj8k9\nB1xU1oWpFN7mh1/PAiQgtrgTtVOBNbBRW3jbVq/xnxVHzm5sUrzHEuJonn4a\npUzi4bYZ/XtzHuE8po8wZkXTpDWseqzYOpdsjwvK1LYVRAq41OvzRiINrG2d\nX5xxlBC5rRAnBvUlJ9Vb8duhJIdmrMErdR0NRDMq60fn8EfBBztOXBZcvPUb\nAFVAc7TVBSELWgU97KWm5IEbH6goFIQ8WeacK3uedpFeLtu/gmGslRFPCoY9\nZgry\r\n=JR1S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"3e72084ea6c1fd00200d78ea2bee758b92463a10","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.10.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"12.5.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^3.0.5"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.0.1","rollup":"^1.17.0","pre-commit":"^1.2.2","@babel/core":"^7.5.4","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.5.4","rollup-plugin-babel":"^4.3.3","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_9.0.2_1563195450648_0.5727659758308692","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"postcss-custom-properties","version":"9.2.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@9.2.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"80bae0d6e0c510245ace7ede95ac527712ea24e7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-9.2.0.tgz","fileCount":8,"integrity":"sha512-IFRV7LwapFkNa3MtvFpw+MEhgyUpaVZ62VlR5EM0AbmnGbNhU9qIE8u02vgUbl1gLkHK6sterEavamVPOwdE8g==","signatures":[{"sig":"MEYCIQDF5C0ZRIwIG+KHlBOK+i24PBfUVRxZRH3mF+WcrEQ+3wIhAJhko53976Om5yni4zBgjb+jqMjUgr8Eex0cKnTDg1ID","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZHJnCRA9TVsSAnZWagAAL6MP/2BIoHbljbmsF5R83oVt\nYFo1SatllCltyDIkttGhJBQuHoSDFQBZgrO9rjNXST3Xh1SI9qSr/egsmPZ2\nGrDWF1OTROsdbLOjEf35ydUd1TvXXJWab/16GxzZUslvKr1od5FfPh4q7LQk\nwlT3GnIDFlPuIJGjmJWS9QjhKudz9FskZXsSOkOrFAWo/Q2IkBvRtD1H8+GG\ngMY2ciG08tYRLcMT5LT5GiPWNz9WoWcWAq+618/d9ADEQW9iBLVilTFcpLUa\nEXLGOWg8VLSjKs3wCv0Kyd2wRfnB/WTP+Pd4go7g7vE3d61APRUcNOfLAMa6\nyYZWrMBVNfVigL7PKUvAY1kvCrPTQ3QnxI3O7oa3ZX3gyQqdQjfH9mcQZ5K0\nFjix8IOIdcW9h2CLqbNM1fQZrSqKRBt70w5K1KatQVqOq8G1Gdm9XFtkIgjA\njxE/vqRC+G7UllOf0762CShfiZ55K2MsfT/NptjC/WXUg87C1MlgZv4TAOxm\nya9B3wmLofRV5i9b4b8eAGD5EDx2BPpHgAxo58QEjWK4lPzKosmmjFQgAoRl\nqvVq4b7ZAnfZN6kUr45wLlVruwR+F+Mn9Fo2iaQnv0wABj9lmPSbfmxuWV1k\nwo5nftucVO5hxrkkSwpSuR3eOHE+CinNIXROt6zW0+PYkwDqCblQH2qfnY9w\nPZXn\r\n=NhLq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"3d7288c6c9013c0e495d6cd600ad2d7f6292f865","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.14.8","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"14.9.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^3.0.5"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.0.1","rollup":"^1.17.0","pre-commit":"^1.2.2","@babel/core":"^7.5.4","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.5.4","rollup-plugin-babel":"^4.3.3","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_9.2.0_1600418407063_0.15095013331827256","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"postcss-custom-properties","version":"4.1.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@4.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"1b66eb250063fc1f38304fa20a7562fde4194095","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-4.1.0.tgz","integrity":"sha512-Pji2wky1pYpZY+GbZkycbG0eW/pFwxLl+azeD/8wqvs9d/YJQi3liTxDdiljG3RBJMBl6C85box0IZQMRXaw+Q==","signatures":[{"sig":"MEUCIQD3EjUhYF6zJDj/d40ZTjNbnGEWfe9QJ68H1EHcWgMxVwIgEgU/4B3CY6HAdMBaxlF2g+2eQUFcnPzjviST2PZbXXo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"1b66eb250063fc1f38304fa20a7562fde4194095","gitHead":"6ccf4a98ad45288fea6fe61c2bab1859915dd9d6","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.11.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"2.3.1","dependencies":{"postcss":"^4.1.4","balanced-match":"~0.1.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.23.0"}},"0.2.0":{"name":"postcss-custom-properties","version":"0.2.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-properties@0.2.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"72d9437d0c642ec6aeb9f43c7c18a16406824436","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-0.2.0.tgz","integrity":"sha512-gxJWTGIuC2XvnPE7CIDEnth4AD8XjbFKy86aUT/89Chn1AsTeIhoa7Z6mPR6o38rGr1rYuGyTHH8uq57AA0ZiA==","signatures":[{"sig":"MEYCIQCsx9cPKLvo76tTDoiCeoKZqKjtzjmn4AKrrQPuSCcHhwIhAPMfoOafeYzb2Z0W474AbOYBULhpo7aIr1c4wjC1kGu5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"72d9437d0c642ec6aeb9f43c7c18a16406824436","gitHead":"5f23747fdaddc84dadb6b2ca55a21ad041ad2cbb","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.0.0-alpha-5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.0","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"8.0.2":{"name":"postcss-custom-properties","version":"8.0.2","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"43fd299b8e7b5385baf7d5dc77844658b782bfa2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.2.tgz","fileCount":8,"integrity":"sha512-JyLGxiZ1f9AUXMjnGrw41CqqSD1I33lGBGv9G1S5uHy6gkDTUViNIc3+p5kV0sBpfuLRlvwZP0/vxa88IBT4yg==","signatures":[{"sig":"MEUCIQDDBR6NacNH9MI+WwZ2o0DVniiOKuuTcNiqrOp/7HO+sgIgXarJgra9gSbNSGHOSW+YCGWnC1L8B/ISYeNMuLgdCz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109535,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboBmqCRA9TVsSAnZWagAAyXEP/jOu8VywzH3tQ6TLvQe3\nEw3UcV+ryonj/l0lZdahFn7BuZDIv+/8vo3ixRcvpHoN3rnea9OQpG2ZxDYU\nE7jrhUdIUZpytgig2eJryaNhA/yRfq+LR0W4qVP18396hN7Eg/z/jDOqurT1\ntZdqLiwMoss69pI86QPPX0PJCtWps9Ki+N8BC/vxFqMOpu4n9Xte6oaXIdCP\nsl9HNE+kv5FYt4JX5bZauVzlAwRkWUbg/Cjwr1LD6GloT0s2lVJe/9+IxhxW\n85rgYnMOoQbPWE9CFrLwFABmhO+OTptslJ67EekSOoBD3RGIhcpoBCTJnjVm\n4CCcmYpricAzEVTjVJ6RuUNn5z/UQhs1fsEN4K3OXQW/81EzEgLjG9WH3iIJ\nzmDdhdiYATsjRi7t8UKO8+XDm7LKVZQffJFceAv1eRY0enjbsaleoE34v6As\n3TMQThOoiqpnVqUrlNcL6K+sauYFSQZns638hAR8Bea7nKtXwKJ78iS9+lj2\njuyDiRQNvFHGSFRyOtTDJZS5VojFOkUaeiw9/QAuRK5gLHqycL275DaR/M5k\nI+B2ijZYs6tfUI2iKSnDP2aGPYvGVqQpTdtU5OlG25kHcj/Wa+8iMXihciPY\nqX8Pep5wTi4tsjCX7Sdkl6VbAXKvS3zG1qJBpjF4NOFSjSoOMhIb+EhzZTmB\nBjdo\r\n=u0lf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"614a2f942b7caaa071779948723b66b4c7e5b42a","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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.1","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.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.2_1537218985926_0.6211238837859365","host":"s3://npm-registry-packages"}},"12.1.1":{"name":"postcss-custom-properties","version":"12.1.1","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"734076263ff1032f259c5310f03e6766ddd976f1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.1.tgz","fileCount":14,"integrity":"sha512-OpSjinS5X0xGOiau7I1vj4TkVcstne2XfDTyQGo6FEVtajsz1XRS3AmHTKnB4ZmVE7aZQUrB24iaaDTZ9R3BoQ==","signatures":[{"sig":"MEUCIQCVMaWg1VkUSFH1t81ZKi0GPFYvacYfQFFaE/6Az24rBAIgBM2+b1LSxQVlO3PQ7c0xTa/hlAp7r51s+9Ejy8qZEiw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3q+KCRA9TVsSAnZWagAA9zwP/08o+ROA/+YdTXxa8s6i\neQbKR+90LM8frUY35eZXoc8mFe6HyxuDTZR2kUn8A/Ou/rQj3YhgfRaN38yk\nIjo6hR8sf6+e3K7gDsbyWMEelwiG9piKJq31wss40hCwX9r5M7qc3BBhoIzZ\nGxFCDVfd9O0ChR1BwptYeB3zbu4q7dNsGqVWAwRxEpE2LlNTFTHvUcx9hHIe\nqiKIbEeyb8/elfZxaVn5Mam8KLxka/ecB7bPs3122qQO8uY6Y462DN/hJHD7\nCthOreNd/sn0jq7q0E5tARVNwWGc1QME/QWk84sGkE1ZLPSQ4oqJVpYmpxyn\nnhKC5/doExEQHuKayh25MtlsfnfTmsgi+nwnTLX1tuofBVFahcGs2207Q9sc\nJlpQirZ0NJk8tHvGbyOgbHxvJ3n68QapOV2WBTv+rCATrUb1AEcEVzqF7FaK\nOvWniqnAKt1/cx5BwbEzuEUq29BynGvHUs0896uBQM7dodqNa7qvJ89+FpbM\n6tCMp+GLJRow0L2IgBCuF106HQSFxQCm3fXKUSWRXDZP9LbLVtT36RT11HTF\np7WBapT2OGXd6K7DRlFEgPpUStC0vRQXx2arJcMagb1PIIY45aLTmLnv4Kq8\nQ7deZq8DgLLeKAftH+VXV6NfpaevYQ0a+b5YQDhoqjGtpIKdjU0D6GcmWZXx\ndB1u\r\n=HQ6n\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":"01a773b526be03d9e2fb58e8da727c87260444c2","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.1_1641983882749_0.4073242466581579","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"postcss-custom-properties","version":"8.0.3","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.3","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5c8f398ed3296b782a087c72fc53bda9e8ef70fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.3.tgz","fileCount":8,"integrity":"sha512-JdMWVis1D/u+y7S3FGxR8uEpY6dJ6F/KEHf3/OwUENxYRagZccyHm4E82azwzaOrZs5CyNrmRivBt+pAODc3Ug==","signatures":[{"sig":"MEUCIQCJ8FTQujQIq8tnOYUuUsPj19X7dJmbHPWdiWxjYUJrKgIgKatUF25Z+AGtQLWrAemPs3LVTWqphb9suyLXhbCdzIQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboSjwCRA9TVsSAnZWagAAQyAQAKCEGPCPN0H6PoQYsLai\nNxPVYz3iVHgLUvy3d56/Q0ZgDsLzl7llH+Q/LArKEqFM1p4WwxgCIX3bTNfz\nlZ6RIt9tx5E8ucy/TRAsl4iGIkGqEU9BNUcVyt69qXZ5gPrJn1rlFNeaX7Xv\nsuubJ0hmexZiRitmvVDAM7FxltxCkEeYQNrwowDmHUjaJ3a3OzP69G2pT+pD\ncrduzV9FlEvuUrkSyEYvI/ZgEZEqMgy0+TxTi6lBtJhTy1MdEYkFULi/U5UI\n8VbXjnigQVuesj3n45NsDnTbqIMj+ifmz2kNPFhcVewLUhDu8U8RTpiFQN3A\njFGygb/RONuOqNdIS04aizpa1Vm/Q8IYgcNTLr3Rv5p/meF09GK/ZZpW056v\nPl0N/YGsIWzAaMcrV553ZFrV35dmwCuNX6ByCK5ae+7EBz5bqWpDAcoeorsS\nCFHbI88K1+uhebevw7VN8F9RiSvrzq3rm3krwaTMUqVTFbUA3rgX6sd5deiL\nKzxbVB+pep1Ro+oBlxo3ioMDN3O4E2OS5xYDro6uWlQCR0+Af2xUKl6MQqAf\nBdZHulhg/6Jx2/vRzSCT+gSraLlmBXpnYkh6Jvbero9H3swE8Ahg+qfFltcp\n2cgaDrN+nhsPYix11DDsKXLn4s9GgFnYSVIXTArwHvFtdR4vbn2WrVxulQze\nBlnK\r\n=4Jz4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"74d738cf300ffb120e4e8df9d267617aae150212","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.3_1537288431417_0.6954325083542925","host":"s3://npm-registry-packages"}},"12.1.0":{"name":"postcss-custom-properties","version":"12.1.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"be7a5645ece96ad8bf33c0b1d63fc8bbc1caf3c0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.0.tgz","fileCount":14,"integrity":"sha512-6PjtLgi2RSB0WBylqwutfUqwAimbUYfCST4qf2F/0R5DBIVsJrADzaLSys1XnU4zOwjS89QMsIpaWwlEqy+T5A==","signatures":[{"sig":"MEQCIGf6EdVzcneARtgTTcXdo+Zi+IKbclz0b01STZC7LNGfAiBz43xYy6j2h93sVdjaGYNuGE82XDjwc5tZPTr3Nl1okw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3p/wCRA9TVsSAnZWagAAuAoQAJ9LUHrMElRdvhSwTCBM\nyJQ+57sfMzqgBGtQb7FGxUAiD/WOpNjgf6BMf0+iQbtP/m65mNuhj7Bz++Qt\nvzvR68BlkEkr2ccyolwGPc7ofv5VB01FG8l4+sRmG51cD9Z4yy6cyXCPiW/L\nknOoXJlWegDap5xghBTrmXSlK0LQ9cBCJAhivzlInEbLAi0JKY9mq3najwiU\nUlMebjW5Cz69w5bdadaq4Y4gwPgAQj3eSfEYSHy9PVY9BsB1jfY7Td5dDH69\nm3nUM9dc+C7l3n96cHFc1Xcocs7yj/he53Zid2KV//OSlU01bf6pZqw8Ra0c\nRrFH8Z2JDDj/wJsh1SygN5BObpkCz1lSoAY/uq3dXf3Y5AbCyIzrJS4EOPGn\nu1ESbNzq/k0wXi2G1g1inrK9Hxz4IsW2kRjjv7cF/UcrMJQX57xa4lO3mxmC\nn5PtQgYHl+VzlUEiopKednN8dd6Q2Blrdjb2wlb+Ha5yCOs8iGzf2bOKYPpg\n5lsOl9eTjvuh+KOKpqWVTZVAHfu+3yKRjfY6KW+Zh68U84et2KFmp47QdbH8\n3TTCmH1joJM8bOI1ejLw4kGItSRdFLh/jCOh6q+w8pJS/PNLX4ZykmJ9DWne\nXicJgg0j3ETSvWwrPJviAdU5oxEGJNYK2bGwYPPsypgNYSXgKUem/vzKpxpy\n9yzz\r\n=UYHd\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":"c1fb91000b0e4df86130d4cf66c2133703570c90","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.0_1641979888307_0.8455316600885725","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-custom-properties","version":"8.0.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"1834fb111161e7c7cdc9589185e0b4cac4fa67c1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.0.tgz","fileCount":6,"integrity":"sha512-CfQVcJ7AZHJ3ldRp1Dyk+tb9JW5siQtlhw3H/a5ZbkObv03aaj/KOs0ejAADgrNQGB8tjNwVYxlSa0/dIRAoQg==","signatures":[{"sig":"MEUCIEMcaKqar4b1Ll9s4zaYgWrMxmiq8ya3dGEqhMVt6wfmAiEAvrpstPo1ArGZNyDjaFoSsNruOkbXjCvtBGSjx2BRI3k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnswACRA9TVsSAnZWagAARqoP/0yiPJ9nmXVE12vtep2q\nbyDJhEajUEsKSH8LGr9Bw25ADa2TYKV4BzLZwXeEI/wFX6sVddoJYYs7K1B7\nsQw+H6RkSo2a2Frhmjb9KyZH76cM5CT7Rnp2WQbGAqCT2GeDF/TiHr9PC25+\n0l2c2VhtMijE7S+VXqQwOGlr0LR2ItTJRlXndiyhYcf+3w/CJKLE2FPW6DWz\n0photH3hwaWm7Md4K4Ym2s+r4OdS2lLW4wm0+t1EmSmN49ivDgDTbi0n3TkN\nYuzGsYONw4Klc2QvW+O+Nt3ZCQiWTPpv+PHlKotroJVf3ORP7rDSspYuxKMw\n35jJ1+zW8Kuj1ctOdrj6O0aznHiPO/8ERsq/goEchHhVYgm5zBEZZsntn8sE\nFboR/n7CYkEQCXLkfqrm4jI44XvZ6zmkZLlB3PYNi6VlJbZe9gxUE+7Pbill\n3SbKRD/4O6z1H0lP2y7Pu7P1hQ5w6mZfZ+GnTrWkb6W3i7TT/kI6NBvjlMfO\ngJZ2u12mbCde55xPOmah3t1nJB7Jb7+NC87AJgiI5Kn+XU8nFTbJF0USJ0OD\nkl3t/M1yna6y8NlXoxkQQyZzo7sIyCuv/YeQJ6t3uX5rTHalrEV6ed3hXryl\nozak3mgSRelEFF1KaKzXJBhbhaks8O+NzDeQ86hLivIhYYLx9kxVpArBxXMF\nfYGT\r\n=CJS2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"6ef218d07cbe30c357a0d00e8979f07a950383f1","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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.1","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.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.0_1537133567259_0.9268931665938354","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-custom-properties","version":"8.0.1","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"b9ddf742b822cdac2beeb6e10841378fb0469cb8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.1.tgz","fileCount":8,"integrity":"sha512-hY3S5uQT1zNsQj3UehDjMUOIW8jXO7gsrlBaiOakAehDAkPpTaeWbkcw+xf8Rd5DfRCU+sx6ZIwwXaq3hTgXUw==","signatures":[{"sig":"MEUCIB+EQOHFyDXRYtLISEU2gsCe+l5zEg6VmioNk6u3NhCNAiEAp7Pl8+E5ctTcwWg4Qt+LhuzwZO+tySmfEOlJQp78oD0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbn9cxCRA9TVsSAnZWagAAio8P+wc8H+Scb3A4P5Yg4ETA\n+4egHB24laNzjQG6l/W6cmqhEFcC7ZBLiX/TVkwTptPQAKSx8jqL4sehhRA8\nIC9qoTS6HGMzhjiXMLplg8TrhyyBq2cICCWhPlJ7d21HaXQCetSJCZU9gtXG\npwX3Dm3gqA/W7wiv7OCd00AUqVHXoB1U1OBxhbrL7xCsnfLrHdq2nPdCO8g2\nwDCZv543HqwvmHRJzJxU0dBM7thOV0A17CK15oO9qX2m0uNOdK8tMVMSwfhO\nKa5gcfvDFBJJva+NMPrny/ROFMTGLl335pkZeG32+dSmNta/p1SrceIwwffd\ni6VmuVMlE1pyqVfXRTItbpIU1LmP51RGEhSaIYiYRu0GFHIMHDf2WRpsAA1S\n/oOma8IZwSe2Y6cqKK6jkBukl6ilJZQ8Q6RjIIRUTiHlFGl5FyPuEuTCLA/S\njDcnw7lrDNLnsUIe37ZPSA/YgSBAfc2Wiz/K8y/3P71AmRBlaQ/4iEPF4Bdx\n2bK0tct8W1/Ui/t0/ORkLvQnzVhx8SRMvkX1qyk7iWUM0PxTzVXIPSRpvj8Q\ntKKOBbfuete0wy8CZFgANLyhFULiKB/NxM3aVD8kVsbQjYBbs3QbxMBigutw\nXKPo0gDtK2DDRERXB//wDtIL1+SjGt0oJ8mm2KlO9igeTWm62ecxEl8bgBJx\nA0YE\r\n=5wkd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"7487215e2770944833a93f604223ecc6d5b1dc04","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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.1","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.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.1_1537201968384_0.6543139121065367","host":"s3://npm-registry-packages"}},"12.1.5":{"name":"postcss-custom-properties","version":"12.1.5","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.5","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e669cfff89b0ea6fc85c45864a32b450cb6b196f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.5.tgz","fileCount":14,"integrity":"sha512-FHbbB/hRo/7cxLGkc2NS7cDRIDN1oFqQnUKBiyh4b/gwk8DD8udvmRDpUhEK836kB8ggUCieHVOvZDnF9XhI3g==","signatures":[{"sig":"MEQCIBO4SbGS+rtECHuaOjmojiH8KSXvuSM4smP6V7S/XWeuAiBouhG+UeG0n8uGxCYRandjhne0zVlo6sjEpxZZv0flbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNh0lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjLg/+NlhKxo7sBJMXytpZ/oF32/W4tcRP7Sg+AG20wyxjCSmCod7j\r\nuxN7cOGgwCDgE+2Ypk8PCjLA542nb/5VjxvRks6ySnnjeg7ODAx6Gs85fu7F\r\n01h0GsZo0Pzq27GlArmW22Gj7e41I5AP9LGPmb+F1uQ6QzihyaMfchy37YEX\r\n5LjgJFHhSyOZZ+PwYxsoIAt3fP7IEyPqzrd8yjGymzdf12HEF4SzAzWF1NIT\r\nv4XQJ9rCshDbGbmc7IhUGy+mFz9PPuAQiDNjTZmzF9loomW7Wqsjs54Io5rO\r\nYyUidDxMDWsSdCEC3bVU2jxoqlafk4ceIsXb/IZjbJvstKcycNTM+AdO6q1u\r\ncA7mmLKgRc95yXNOAGwdmcbE4mBQ0GfM/u6TXAR9XZrwT0zhE0qjOP6RRh1F\r\nZxAW9p2gN1z6+c/ToHU05zDACgc/PNOb0KMHF2r87lF5EwOozhpz9LPZktap\r\nvQW1BqqmWhLYomcYV9v7Lsot7LpqQ0P1NfWakTcKRQej0R0LTAbKaUCZU36Z\r\nMxRpzBFes4gPyBM8jJDPLGf36bsKRFJlTjrOcOP6bm0TJnErqNAas5VtdDno\r\nQhCdyEgLITblcRATqVj0W3mvkE3aEsd90Xe8MvgLQMQhdoeg/X4wT/Sh418y\r\nxttvAcxNKvAFwwc28/ff6cDE3CtwqhhVAjQ=\r\n=Ebn4\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":"71c730355445a45d5cc50f7112e032a436e0535c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.5_1647713573017_0.23314932459023563","host":"s3://npm-registry-packages"}},"12.1.4":{"name":"postcss-custom-properties","version":"12.1.4","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e3d8a8000f28094453b836dff5132385f2862285","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.4.tgz","fileCount":14,"integrity":"sha512-i6AytuTCoDLJkWN/MtAIGriJz3j7UX6bV7Z5t+KgFz+dwZS15/mlTJY1S0kRizlk6ba0V8u8hN50Fz5Nm7tdZw==","signatures":[{"sig":"MEQCIH8FhfzGCUMWM6Jdg2SZgufVvMGLh998ZK5BUGv7uacuAiBpZKKZlLwYisJhopEjI6DF1MdYJug+rNwuywYkPmu5cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh95WBCRA9TVsSAnZWagAA/XwP/3l7Zyg1CQyq7w1lmy6c\n3Ac2lAyAC6rcNSJ3F2y4cMuUYduuF816L04dCTWHSxjAuNeJ7+ejnk86MDKH\n0a2PIS6lHXEcyC7ExSnQR1bTCcuc8ZPEr6E9xUqnwI4JR8JaCwZ7HN4LS8Vb\nUdCxsk5laLTDGBXjLdsvCHHhoFignUxT3QP8QWe4FCGDWMkdzL5Vtq+dTbx8\nyfWvfgiBIdShxKn1WrWGih6rT8wTAm5qU72ceeLS10YVAo4r+MVIg5FZd80/\nY/rs7EWYOehUeNue+LVIkGzsUpwiiRjDw9zAjt7jaxXGdwMDcPu9pGyO7e+R\neremFxiyZnCrytyb8zhbl6VtfLHa1t7a9d2j1Obavw3LwJh3qBRSlCUetZRx\n7dEwMyJKH1bNg82EqnkUvKJm/929+KPH9PmD81w/OL/EHjtV6YEXfXhGvrwR\nhqACJ+d3EGmDr6O+BlpjEwHNPvVMLnIElSGRAa0IlnuMsGJUTDsZD7+aHHV+\nG4NrAa2Re0GVL+e+uMWZC/kdb8lQl5CBEJujGqhUpZc08YrOHwWx/FA6tRFE\nX1+ALRnWEXM0fzEKkruztfLKtjGUZ612JagHueLl85Hza5kRkFuqHFiUsUh9\nYI9iBIoL6iDn55dHgAspGdEfYivBGR8Dwyi5mzJ68vVRroLB48+T28jFu61V\n+5pk\r\n=Ta9D\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":"89dfd22618a39b752f334de29ac578a01e74ceb0","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"node .tape.mjs && node .tape.cjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.4_1643615617444_0.9156583130164251","host":"s3://npm-registry-packages"}},"12.1.3":{"name":"postcss-custom-properties","version":"12.1.3","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"8e37651c7188e72e6762eeae8db39755e84d3a64","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.3.tgz","fileCount":14,"integrity":"sha512-rtu3otIeY532PnEuuBrIIe+N+pcdbX/7JMZfrcL09wc78YayrHw5E8UkDfvnlOhEUrI4ptCuzXQfj+Or6spbGA==","signatures":[{"sig":"MEQCIEqMUtbpGp6jv4bcFI26D/mQWWDwR9UzuLao2F12DcZIAiBxFeqRZnnSP5q+S9N9/qZS2+VsA3BS4F2yjThJpp0JDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5VQFCRA9TVsSAnZWagAAmvMP/jmfOgz6NaNmks27tIiE\nHM2dKhW8hVDD2c8g7DiSPY3vzGFHAa1x6nOI+zpv2Zmxdw6hNoUY1nA3XYv3\nkHmtcMpCfS1+pDGiyxyhF4tsm4yuRwKcmRK3FD7Nsf5yduitKQZ8CmSoP7u8\nuLsZdBj3cd5R/ml4vo4hvbI1aOUnxc/26wXqw0wwvNQWqouTi71EaR8/LU3C\nzERyqtWoPw9LSS2p3Ps+peSsJOjjMZfT/d5bdz45uniWOE5RbQ6xU7QF7hSR\nsEZAST6V2dEA/DrNABXmQoEQwiWek6r7q+rmJHVhHNqyzNJ9WyKl6ELCmBjy\nf5KKrFy528EYriuqs9s6F3Q2RDCPDKcFF048R1UNYRBJOFl7cdGHH7FHB4S3\nXqFmrebek6kJrSQerGUtL4MGuzRvFfnq4jNxUj0my5iHqo6jiVcHA6BS7f3n\nnJsHKG895nYpZ4cfUduwD84UGjZxPJe4ZSu6FMQKCancSGwr+QRbu/ieXZtR\n6m5819Oc2lRbQm/cV4S1169FoC6W48WdG2lKlEXDruvn9Hte4DZTpKuDi8nk\ncESh5D2WZC4pVrRv61FbWlWqEr3WYTw/VbHtgBrRQi+jZyEn+bYRMUTXwxgQ\nKgoKB6pFiWKXrrW9Lx85/dwt70R7Un0B/1Q/O6FmJKIFZvdZguViPgcOjEza\nwvTR\r\n=qlPT\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":"9f2a799e7054deb20b273445d1d2b439777f947c","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.3_1642419205552_0.6006169858604289","host":"s3://npm-registry-packages"}},"12.1.2":{"name":"postcss-custom-properties","version":"12.1.2","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"066ecdb03779178ad60b8153755e79a2e70d17a9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.2.tgz","fileCount":14,"integrity":"sha512-Zvd+k66PHBYYPiXtdjNVx2l54Y9kQC7K1eUHzBND97RW/ayNxfaPOW+9NL3r0nsVbX1asPLdkDj585Wg0NBJCA==","signatures":[{"sig":"MEUCIQDvbuSUQmpSGQGdtwU7Q0CwZhG8paSaBLP4MvTJuqA6mgIgAU2LGBq8NIlw8Eb0w7lqJwRUYK86lgq6+gWbKTRKYV8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33860,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3rXQCRA9TVsSAnZWagAA76MP/i+E1GaFOibolv0i2hop\n+Brr7uPcBjZZS3H08P3sQBNEHFu+urS0xcSCsTkMXnawCRxV1I0M1JNebB2p\n3WGxRJGKP/6DwpvkDtwJD3lFLRWnLewjvXiQqp4W7O71Hr+kudJDTV/k/30/\n1S0FGnfYni+lDU6DpZzW0MU5hPm4vPJO/a3I3YSNCRQO5mwrDQa9yyNFrOSk\nPB6LUh4OWLvqmevg6h54nNhi1fjRUBNiToLeNfd8hBEvaah7+8ByCnVSNdEj\nBiClgq8VdYUme67LWJRWc8CgOwZk8WnLb3Y/GtM5IEuHWMqy0ID7Eoy8iMsz\nAld229VwtwV2vtIQbqcnxnfzv/ttATCD4fIDKEgyoVqWBhLhaxvoPPtkJ9md\nZYqxKgxIk/j3VYGt+qVblhqUOseaTfyJuOgYEMzThqeHymCHnnC5abReFzLU\n6RdfpSi/NTLBHPhnDM2lzxkK6gPn2HuqbEp74cAAYWuWKQ1rn6NYkETMDmNK\nNuewfyAac7N9gDEw4tWweKYBEFFQJFYViusxE5FAAqY+gBit23tiy1BtYN16\nWdgKJbQTTYnyVcgEYqHsvF8+HaiEBCDWJZRyIZOhC0NFF+L//8v600uGtAlW\nndUv799wRJsUQbaq9xRF7jzVHmV9vh1+ziDiz4qpsOQZua3X8YaSE0WYcEH6\nCIJt\r\n=nZL4\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":"dc027378b78b4b8e04ffa37d7c8664de13c1675b","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.2_1641985487950_0.9795117351436318","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"postcss-custom-properties","version":"3.1.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@3.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"74245d9317efc74289ff8da51926f893386ac8b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-3.1.0.tgz","integrity":"sha512-N4ZZmniSXFK+MHhOdrfLcoTy2tdcPhqEqQrtyCvUCesHFmN+ei9LGig6A7D8vvprdmqkZHmaIvUJb6YlYtCKdw==","signatures":[{"sig":"MEUCIEK8EoJuBqIIDwK67ZX/Yv88LhEqvFWkgW7aA5qUlw18AiEAx/ARV+rIgae9RQaFwznPBF2cvhAW7vqrItHLpHdhxpQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"74245d9317efc74289ff8da51926f893386ac8b5","gitHead":"8289bd5af50a3e70241237eb1ad31a718c9ea411","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.5.1","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.12.0","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^2.0.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^4.0.0"}},"12.1.9":{"name":"postcss-custom-properties","version":"12.1.9","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.9","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0883429a7ef99f1ba239d1fea29ce84906daa8bd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.9.tgz","fileCount":14,"integrity":"sha512-/E7PRvK8DAVljBbeWrcEQJPG72jaImxF3vvCNFwv9cC8CzigVoNIpeyfnJzphnN3Fd8/auBf5wvkw6W9MfmTyg==","signatures":[{"sig":"MEYCIQCPl6lb7mNlnedqlOYoc+NzeHC5iS4xQfF9gYb37QYleAIhAIRWfoq/mIDMZQM03HJFClP3eayfphisXJZfRrrTMDO/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37560,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIhdGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtZg//emRxzPE8X+/0HKo07cL3Ltrd3dZ2/jRUpCwNX23ijcA2B8qR\r\nfo6vT4XBQ/pw/KJYEfiT/Bn849b/Z2+Y7piPQmtda7c1sxoz3ZtP08nCtZSa\r\n6BpAKIEe6aQcr6S1m4BhEiK8EaBdcIQ58Dam1vqOKXQCXyzI30Nj1dEdTt+B\r\nUnbtM+Ke/B/IQFQlMG5OE5IvFqAFjwBlX7HYaDW20n1kcL1CDRUIFrxmv1ho\r\nLyDcdFHAmePUo/MGmogdYLwnGUTBKofnwYrPXCof9gfpdfrqUSc7NBmem2Lq\r\n86T8Qnrbi/lrEz1izc7H2FdvBUgTN4nyWkNitMhHzSReXlCT+cmTPUPCKDez\r\n0tip+RSE4XrvpwiqfRaoFUhA7Nkhvh0M+3dAGG8m2gzVl+NP8VuzOhcbbUJi\r\nMA21xLAdNG2Ltx4fbGPNQ4LbMtA12AUtwj+/FfiUm+mVTxqoCLEQhpEMMOUd\r\nnYLPg5csjWupBB/kHIAN0Yza5YTjlakawAZMdMkoLLSVI8TwAHg1KIfOLBiP\r\nPxPnhUThXUwwq1J5G0AfUN9Q/mgSmexiKe42W8PZMRrpZ8moihsrH5YNrav0\r\nurth4s3K9REbYQTFlX7ZW8dGEI700mUfvSEE6k8z1j+DpN7+Yn2LLQNDmmCF\r\nCYIH/0dRazWzxKeMBII1EQypU6Qygipk4yU=\r\n=V6Ae\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":"dc11f07b863804425bf957f8529377ba1bde4da9","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.9_1663178566179_0.8898208456114385","host":"s3://npm-registry-packages"}},"12.1.8":{"name":"postcss-custom-properties","version":"12.1.8","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.8","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"aa003e1885c5bd28e2e32496cd597e389ca889e4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz","fileCount":14,"integrity":"sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==","signatures":[{"sig":"MEUCIDL5hU6rez6XHh1dfBnTNcUY5iFeKep339+UOBNk0KWWAiEA4FxZQHLYmG47Z2jy4VpCrPH0Q3abfG1tNHG1e8Ny4/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiovPLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0QxAAnqR9QXZxFY+5ZSaCozHd5Tj8ZCS/KIUC9HBLkmFr7oRGT75m\r\nrLL3CED5Ih1noENB+F8mv/lpdmFhYWdwgpp0T0cTKOZmQYmmwZtfkO/dy8kD\r\nzCMitlhHqWoz+uC7XJw0ij8VB3R8/RAd177uBvqcHjJpGlb7oWdU8y4n3SXv\r\nGQTBktiy2JrAons1i2IQJYimzDUngYyEPwX9n1t/QhOAXEwBDq2tvRfBn9QM\r\nqq82gZZgfRo/pnom0pYQ2NkAVZuQJJmANWSuN1DBSvNxMsmakrsfuucS5JGL\r\nj/6cg5A5m+LPyZxGnMBYah3yystO84NUC5+rXtgUnc5vQRAflzprIkkIwWoI\r\nbGENHFvY8bF2K8k3Sd3x51koBd6o9gxmJGB7OCIDxCCFRnffgX6jik+g/E/v\r\n0MJ96gMgTY58OVEkKivMYBmU+vOmQBSc1cD3aFU3OIs5D7jr0faug8jXcr8e\r\nGWfF0gJIzdgqt2J8kZjOtBL/AiekkunVbpUbCriIfCxgBgFz9v4W10JbO4/T\r\nYLKElwtluwDzoQtIA60O0kD8QKIWZCj9/Es6TiGWitV3nX3g1B2Z+cbJ157Z\r\n8UXED7m1Inxm5f81vU7rBTCLecg8XJNzlPNe79eamWXbYhed0IWCUWIPjHub\r\n6/NHMsBDBVLXfZYyrgzfdDpSok1IARAx0tA=\r\n=QwAe\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":"2a44952a631298435e7ae88a9cc51a1116373d26","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.8_1654846411027_0.11180880954454486","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"postcss-custom-properties","version":"3.3.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@3.3.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"e0d2ad02be000d48dcabebaca4604c9aec4b751d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-3.3.0.tgz","integrity":"sha512-vME2Vf9nG2XvV93aVhG0njIVAJal+i+1N5opTqTf8ExxwI7e2WQ1f0xzQN2WeEO/hml1AO7TlaDYGipX3BdtgQ==","signatures":[{"sig":"MEYCIQDkwDIVfh4ATMG7MDZ4awt1mQvZgp3/4wbfEU1+q8y2OgIhAP5QFx+Hq4SGiOaZsSHKXb5V0ucbKyrBw1qBySI0mrou","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"e0d2ad02be000d48dcabebaca4604c9aec4b751d","gitHead":"d8c4db5f94fcea5421e4a5bacd9e60f7d3d18bb8","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.5.1","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.12.0","dependencies":{"postcss":"^4.1.4","object-assign":"^2.0.0","balanced-match":"~0.1.0","postcss-message-helpers":"^2.0.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.18.0"}},"12.1.7":{"name":"postcss-custom-properties","version":"12.1.7","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.7","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ca470fd4bbac5a87fd868636dafc084bc2a78b41","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.7.tgz","fileCount":14,"integrity":"sha512-N/hYP5gSoFhaqxi2DPCmvto/ZcRDVjE3T1LiAMzc/bg53hvhcHOLpXOHb526LzBBp5ZlAUhkuot/bfpmpgStJg==","signatures":[{"sig":"MEYCIQCKTqEjyVXyLdv2S6B7BI84voeWB2CBIxhF6AjcwRdAEwIhAONC009Dlu7NnShmOkcmYxWm64ZJ5Cp5SzcO+zCefJ3r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUFY4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqC3A/+Im6bNzKYGmajqJKUovWwLHX1rTTxMh1OO28+XAPAlrX43eGA\r\nPPZ8c/na2mg6KVTWas2/BtS4Sbly4Lp4o/zAc6U1NmeI4ulxM4dTECZzprlY\r\npwRNRcsILfOIjKR92CSVtkyL0RgsePvzCpb83S0nj1suuaq36nMLprPQDuBm\r\namNzQzDQ47Ho1I1hK5qH0BBuRA8vDiuPIcTEEoFlYbkzTESUhuF9UQ2bcvSs\r\nBC5DEqjNWvF8MZd2E/+/TjIeXuKzg0L7cwWnop92r9cefAZCcsOBAsu9ubAx\r\nAuji8x/KFKKNIVkTlEACLJJyNB534p/BiXUfYYjxyc13JsNsv8I8vPSLGfyb\r\nBhFVZC6uj7LXUjfWq9tWHehoMhY17UDYFL7/AxIbX4cfcE3b0GgQWb6mgv3W\r\nGKtB7sOqWNLq/TSqDcs91XnuBVBbcroVpI4wU2+dNS/6mzlKNPPgqd8VJ3Yd\r\nqw/SegfkPcWB1UNao8vgpLUqZj79WNeentAzMP8KTx0Miah7YO3QfSmtr68R\r\nWm98/yIAiDLc8xWcRRqWM2NAfGfnm8P1mDei+wgqUbZIBVliIfHFzx3c7ZWO\r\nYzIq5bELUaFMn7VjwcVrE88cL6SREanKRR1GPEODASdTM5b+P0UAthsv2hdb\r\nHEqTiec+vzeyNKGwHfheDG6VnvAAhgvLzFo=\r\n=7DWv\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":"f0e9099df6baf5a3ff2f634ffb89e073ad6d40a9","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.7_1649432120772_0.3988573946420064","host":"s3://npm-registry-packages"}},"12.1.6":{"name":"postcss-custom-properties","version":"12.1.6","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.6","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"345b5b64c9520bb66390393646e8d5fbb7f10b58","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.6.tgz","fileCount":14,"integrity":"sha512-QEnQkDkb+J+j2bfJisJJpTAFL+lUFl66rUNvnjPBIvRbZACLG4Eu5bmBCIY4FJCqhwsfbBpmJUyb3FcR/31lAg==","signatures":[{"sig":"MEUCIQDDStMGvr+PumpcQToENT1FXqD7FKEC7Zj9fkgnhUCc+QIgcSi7Z/TiVUnMFvvBd3x7JL+r+TjSYhIw6MW1sE6GPZI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTJtOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBShAAiEQKKWr+bX4MUQnHTizex3IkZCT5mE1J1wFPfO4cr/0z4Ym5\r\nTpO4S9bDKx7zY2kLgwiDarXZ28mpR6eZBxD+m64NFSOmfcTlKTtQSGI2H896\r\nw7hvwcUkvFrOBa5lia1SvZqhWuxdRXqKxTjM/hS/Hlxj1NRjRLk5DMXUbrmI\r\n8nqEtPG2iKCN6pahQfDLO+I9CqHRnnWG11Zw11dphK/KSjKP7gafcMRgYlzw\r\n9BAdNOG5+DQ6oxFgZuSM5Aofzt4nckf8CJQyJ/ot5iAQZbBKaoY5iqi6/DCV\r\nVgnKlW7fthb3vKd4Xr3JI5BiVYopqWtNWbxB4NCWVCtqmzC5DIC8M7BmQ0p4\r\ntIUpXzWSHSMeQK0gWXcegjdiAVfoXeYkCwRM35vQiNylu2sbfj7T0IgHU4Fo\r\nBRoOJTpHZsdg0v15lzMWTFz7VtJIP+RpiCsRxbO9Q3gQFOIfFYXDS1tNa9A1\r\ncQD0/zKJ4ms61AwFaiYl6MeUClWgj9EM76ouhUJyEVajctZ8H/vXHiH4+nq0\r\njbqqD6+JSe4D1wG9NsAPw4M13JuLNI46VbxJa8AoKWtaGjR8k1G5U7RjKVDT\r\nkXkZsMC7trZdU6Fc3sbrc8F+vyCu4pQT9/vqFt9TVOCOvi/1U6w7OcdDoOfL\r\njvXD+84DuH8Dbx+hBjyloTaBR1fcS088rmw=\r\n=Yp7w\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":"ef5089881419e2bfa1c6c99d370f3c449e499d97","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.6_1649187662602_0.6293400820195854","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"postcss-custom-properties","version":"2.1.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@2.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"30d30bce8081f30a6f754b4d7ef6df2ad47ed9db","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-2.1.0.tgz","integrity":"sha512-unhqmpkziydPKUDjStUm2/1C3ECujYtCSI8E0imApAWNOR+SXMNBiOUCTLxPygvB1BjuQ9/Diyz3e/Y6FO7H1Q==","signatures":[{"sig":"MEYCIQCNOAHr3leOfYdegwHe0KErMNfNCWlVR0nn/UQUwEUJBgIhAKpfj5R2PiaBHLRR9wJfizDDkJxqvB+6Ro9RVoTE5qrv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"30d30bce8081f30a6f754b4d7ef6df2ad47ed9db","gitHead":"83f6dda366ccd4ef178fa5671bef1a8de823eeee","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.6","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^1.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^3.0.0"}},"14.0.6":{"name":"postcss-custom-properties","version":"14.0.6","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.6","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1af73a650bf115ba052cf915287c9982825fc90e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz","fileCount":7,"integrity":"sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==","signatures":[{"sig":"MEYCIQC0TUKf7u9Wc7pv1NohD2aGb4ojWMaWI2Y1b+KV1feYsgIhAJ+NhnYd6eAWOEgAYiSJXxkXAg6QvHngbud78PQ+OP77","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618},"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":"7c3a37b292dbedb28a65c13a21ba03c7c2f09d16","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.4","@csstools/css-parser-algorithms":"^3.0.5","@csstools/cascade-layer-name-parser":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.6_1749126064377_0.7121845264327016","host":"s3://npm-registry-packages-npm-production"}},"14.0.5":{"name":"postcss-custom-properties","version":"14.0.5","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.5","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a180444de695f6e11ee2390be93ff6537663e86c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.5.tgz","fileCount":7,"integrity":"sha512-UWf/vhMapZatv+zOuqlfLmYXeOhhHLh8U8HAKGI2VJ00xLRYoAJh4xv8iX6FB6+TLXeDnm0DBLMi00E0hodbQw==","signatures":[{"sig":"MEYCIQDghR/wEcqlLH3TvKn9dQZKH13LHAAFoIfMRfC+alJ5fwIhAOONa9+zxd4yaWVVQmnomj0sUH0nTPjg60oj6JnFLa7y","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24257},"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":"16041aada32b3785349623e844411d4a33b0614c","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.4","@csstools/css-parser-algorithms":"^3.0.5","@csstools/cascade-layer-name-parser":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.5_1748343062939_0.4772318795464894","host":"s3://npm-registry-packages-npm-production"}},"14.0.4":{"name":"postcss-custom-properties","version":"14.0.4","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"de9c663285a98833a946d7003a34369d3ce373a9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz","fileCount":7,"integrity":"sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A==","signatures":[{"sig":"MEUCID+OO42SMtyK9X0UmpOqj5sZyFhbk2d/KT9t/EQOfsuMAiEAqGIs8G6zE9y6qIsroQW6P4ldCQMq/HLBWo/LEOIycjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25097},"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":"8148e2f3e882dee758515f8382dc34d758cbb3ae","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.3","@csstools/css-parser-algorithms":"^3.0.4","@csstools/cascade-layer-name-parser":"^2.0.4"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.4_1730497765383_0.11829444311859283","host":"s3://npm-registry-packages"}},"14.0.3":{"name":"postcss-custom-properties","version":"14.0.3","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f5db2cb38b6547ecf2155114ae7f9a43c25473ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.3.tgz","fileCount":7,"integrity":"sha512-zCc5y6cilcZXld3RK0glb5OR9p6i/54ro7Dul2drDI7kLCIZC1uiblHGociomp2fwBet3kRFf9DpG4lJtz5yhw==","signatures":[{"sig":"MEQCIG3uDFpbtHggZc8/4NOzkq8WcXqurw5ECixFbUOFRqi+AiBscEh3iiyyf05OsLp1mHTgQSFrdBrMH98hwlkQLisR9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24865},"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":"2750e995c990d543bd851ac700b7e0954a9d37c1","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.2","@csstools/css-parser-algorithms":"^3.0.3","@csstools/cascade-layer-name-parser":"^2.0.3"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.3_1729720167171_0.01289815849016085","host":"s3://npm-registry-packages"}},"14.0.2":{"name":"postcss-custom-properties","version":"14.0.2","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e9092ee55ce78f37bbfce5aab28b1772374ebd66","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.2.tgz","fileCount":7,"integrity":"sha512-ZDJLIXa6uT6FlK6mYdzHxr1fr5ec6lPbp/CZ5+7EZedFmfjJx1fvYQhAPCBebuyc1lkketmiA26ZVl2UkPQ9Ig==","signatures":[{"sig":"MEUCIA0Ul0cJXF9X+0GNJUntF7S+LTQj8BP+2x08XTxrEHjkAiEA8fKUwvvSFKCZUkhvs1n624oqjsVVVl2Gr4uTArjVYR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25097},"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":"bbac0d09c826910178f9bd489541432615642a68","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.2","@csstools/css-parser-algorithms":"^3.0.2","@csstools/cascade-layer-name-parser":"^2.0.2"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.2_1728563275719_0.0832502435812974","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-custom-properties","version":"7.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@7.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"24dc4fbe6d6ed550ea4fd3b11204660e9ffa3b33","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-7.0.0.tgz","fileCount":5,"integrity":"sha512-dl/CNaM6z2RBa0vZZqsV6Hunj4HD6Spu7FcAkiVp5B2tgm6xReKKYzI7x7QNx3wTMBNj5v+ylfVcQGMW4xdkHw==","signatures":[{"sig":"MEYCIQCeb7mC7wsdSeHgmaPP6SVtpLNDUJPnilH0xj06cyhkjQIhAIhCVPJiMKiDcs54Pqzabakyfy7AoHhHkGHPuTbXyDNq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22609},"main":"dist/index.js","files":["dist"],"gitHead":"f17bf96e1836526bcd9fc83040c7768c2336e46e","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"5.6.0","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"9.5.0","dependencies":{"postcss":"^6.0.18","balanced-match":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","eslint":"^4.17.0","npmpub":"^3.1.0","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_7.0.0_1518792569667_0.20675944351368725","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"postcss-custom-properties","version":"13.0.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4de6687403c988ac4ac7ad274ae2fe2399f950af","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.0.0.tgz","fileCount":11,"integrity":"sha512-y4lGIjKPdy1gDyGgwZLpMgqcum04JZZ9UWKxO6WjxSEQ1IzaAFxgbiqcF5M4RWHXFqe5Wa549xXz/4F7DU9TYg==","signatures":[{"sig":"MEYCIQCl6UxKdHhJ5aYkJHUlybcC7G2Cf648b5EYZ9d+1PcKnAIhANCKXWb/eICFkJhgOa5QAXVldJoof+VyrsKBFAkno7kU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcg8tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTKxAAhhX9LtYf8CCwb+BH+6MCyNNZat4K+NLJsjtgovnJE0Z5ZlQ9\r\nZFYjczdneFnmM1zbxL32W2oStqVPJkcQjaE8zoAupniL+IDUo5hpnKdq3Lat\r\nLaEQurLo2+Zq9FQsqX2WSCggIkqRIvfZldfYU5HKvZesFlihjRq5JCV8vQmU\r\n/NZgbo+bAjMYv+kjp7/32DIZ6zAZkPUqrEUYbZAd3/+0Mjf6rjPd/pfkiFU5\r\njV4T+mvCbA7SG56SSTJISNHL3iQh3zbosfAxWa5H6oVornCB+DyKM+/uDhne\r\ncKGAjWzjlZvkTtxsy5H3/1cyX6XlRNohLw+1FmakChKMfe+XmmbZIANpToR0\r\nsmpY/UBO9SjJVf+KeF0ukCf4izyIjRF2fvowA2COdTeA6S+KYE72zz6vHTxP\r\nUkpLsF+9b8fYJ9hlMbrWNMT5Ig5UtWOmgb4DKidDk9q31HJZ7kXlxSWvFO4U\r\nkOEDYkKCFdILm5tZGj3Wo70F4yz1bkXfDeh9O7W9aDjPrwZlHHsW36uYDyqQ\r\nTawhq/TWhPKeM2QTyDsmpCUS2iP/1aqJ0FccmwN1emzfTdG47i4fm88Vkfc6\r\nOIhLWJ9Y2UXl6udqV7n7FBwy1fqFtTgSPSakzH6ytp9iQlrlbAdatRv73S71\r\nfXPxym38H0MxwpIwRozbtnp8R89zu8FHBjc=\r\n=gHzN\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":"587a0ba6be5ac2df454b9f9e119ed7401ae0a052","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.0.0_1668419372831_0.42625853920069945","host":"s3://npm-registry-packages"}},"14.0.1":{"name":"postcss-custom-properties","version":"14.0.1","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4374f6a39f6b91d26f10e994fb12d14de518e481","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.1.tgz","fileCount":7,"integrity":"sha512-SB4GjuZjIq5GQFNbxFrirQPbkdbJooyNy8bh+fcJ8ZG0oasJTflTTtR4geb56h+FBVDIb9Hx4v/NiG2caOj8nQ==","signatures":[{"sig":"MEYCIQCXrvG4b9Y8epHxssuB0092kMQXwNuXBpPyawyvbx0b3gIhAOr6INWCOtwR2ZCJIWHedsqdCKLxTstjy6odpxdhe/3Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25096},"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":"c028ad0daff51d0e3fc1041d34019cf098dd889a","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.1","@csstools/css-parser-algorithms":"^3.0.1","@csstools/cascade-layer-name-parser":"^2.0.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.1_1723996256646_0.08052399268353705","host":"s3://npm-registry-packages"}},"12.1.11":{"name":"postcss-custom-properties","version":"12.1.11","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.11","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d14bb9b3989ac4d40aaa0e110b43be67ac7845cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz","fileCount":14,"integrity":"sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==","signatures":[{"sig":"MEUCIQDHdNKvEz+HGrEt1ibHT7Cfz2iOvrqSv0Uefh6jM3xrogIgFLJpH+mOMAM+vOa04lXo7FtV/rztaWmzf/28LQEiY68=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiHoLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqODQ/+LW+xeq5/U0DrOZR3RJKAQ7hq+PqJfuAL1NnVNrjgv7Xm01yj\r\nkOa+51IT7yPqS/8lC+zDHSjlsJkISiE7yRMFGWrDoVeoFU4NSU+Mzy9nDqeq\r\nesHWpUMgBwmG6TQm+QmEhSrXjcQ5rlF3v/g8v6Udpt24vGok6wBp+YubtXz/\r\nVilF/N7i6Y4zlha7Hb58R8Sx8zCPsGwLcTAZeu2aTPYTPPNzvJwwt+vlcvos\r\nXRukk2tIx1lzKW2CSPmi7cHZjTiEDiPFqtxmN6ccatT3OAfZbBQFyO3FCscl\r\naatriuMKu7uqUxVKafM62JHgbIUzOcBrhS7JorOHFQeoMmuZXqbKE8kCROcJ\r\nPmYMkJKNdao4bAhjIb+K7uQIlh6WGKmdHtamecH6/2QLeTo2IwXMuYNp9O6Q\r\nL0xUzwAeCcqfoTBhyHIEaxlYyu0Gdm7QB2ZL/7hdkYbMpE+CBhnTaIPjt2mO\r\nfBeF66vJchIJTecGJkwIhUng6HS/mxqPELbZyT3aR/2CCofJ8DUCjnbP726v\r\n7+FpOuW24OCXAoapJRZMnByxpLwVH5WLwVJ9Lw7nrOsPqV+4wzJFlFTf0b26\r\n3DRC6H7q/68b4ahi9Q3t7MnxDDtSYVnzNHxdE33BqqL4BSgS+MXkdrzmExD8\r\nc2TzmBnj8izhFu3A8aGVlbtCDpO8ACyhGuU=\r\n=W0+s\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":"00e077979cef25703b37fb5db66bee1689f3c462","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.11_1669888523077_0.9129402584730331","host":"s3://npm-registry-packages"}},"13.2.1":{"name":"postcss-custom-properties","version":"13.2.1","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.2.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"82452ea09b796bf0271cc945badcca18ef59df1c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.2.1.tgz","fileCount":16,"integrity":"sha512-Z8UmzwVkRh8aITyeZoZnT4McSSPmS2EFl+OyPspfvx7v+N36V2UseMAODp3oBriZvcf/tQpzag9165x/VcC3kg==","signatures":[{"sig":"MEQCICKtXw1LFMPqMzsKiFPPkGgNEvuC8DQqGYFRCqZ5XH+NAiBQiipN2SwAaL+zBlwMRc6ocx2WwZSrrhnoIU+yhQYVMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38048},"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":"47fbbf91892aa3a4d866e683eebbf0f7cbbd65eb","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.5.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.3.0","@csstools/cascade-layer-name-parser":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.2.1_1688373089602_0.6969490175820046","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"postcss-custom-properties","version":"14.0.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@14.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"649e79ec193de4322f999469b36212d26b03942e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-14.0.0.tgz","fileCount":7,"integrity":"sha512-GD/suWYQAplXJujsyOswYP+oX9xs29eBNwGloPj4Ub+3/Rq1Set+ZeGmHJfN2Y2+x9vUxAX4eeNJFmtk6VBv4A==","signatures":[{"sig":"MEUCICVxkDamaKDJ0uEaE5KMqC449SjYvO8sEmTbbsRBeeKmAiEAst/sL/aYXsxKUfGjwBTHNzLMMfSNdLfAXHuKRVbHAng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25357},"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":"31266dc3477b10e0254a462bc2c54627a3efb2d7","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^3.0.0","@csstools/css-parser-algorithms":"^3.0.0","@csstools/cascade-layer-name-parser":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_14.0.0_1722721349119_0.8303645039606304","host":"s3://npm-registry-packages"}},"13.2.0":{"name":"postcss-custom-properties","version":"13.2.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.2.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5afac4f38bcfe4cedb834fd6daf65e302940cb81","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.2.0.tgz","fileCount":16,"integrity":"sha512-UYiPqbqmVayyv56y0mtGhvUKZClflwE9cTTmPaqEX8fOVjVwsotqKGYtJXSLxrJLwf9tt7ka+Luyh1ZAOhGHWA==","signatures":[{"sig":"MEYCIQCUSsoUsBiIbZpJ3Lxuo9mehDO9lohmRYSnXBSy5+jBxwIhAJB4VFzlmtbdYIPzlpKFe3kxt+dhumeTwWeIbi5oe/p3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37635},"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":"25a948c0330f34baf00a5a62c5f60c8eee1d77c3","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.5.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.1.1","@csstools/cascade-layer-name-parser":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.2.0_1685627159894_0.9297848148714509","host":"s3://npm-registry-packages"}},"12.1.10":{"name":"postcss-custom-properties","version":"12.1.10","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.1.10","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"624517179fd4cf50078a7a60f628d5782e7d4903","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz","fileCount":14,"integrity":"sha512-U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==","signatures":[{"sig":"MEYCIQCrGxWY6N0Wx1D+mjjphDvjC6UstZ5yvKmlpa0gXWwVfwIhANQA9FQeH7Awg0fVJawHgeYaDb/hBLnn4D8LFm11sIcm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUXqHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlTBAAhBrK//XcTXp7xU7gmTc6XOfOgiVrZ6m3TtgxjTq9vbaU5qqA\r\nB1pH9heu6K3uwFSRBUXurjGC4Hz+n+h2TC4pXzaZXH5U9Jce90i7Ar0DETAz\r\nj2fxt5NkTy3jTrvkShE3O+faF8OktsDHRIKNbICnXJ24BMSuYzLkllm3XaVZ\r\nqDDKFz7XVOQiR7fiKzzly9M1DacAboU3Y/s4tloKo79b1FDd60dpdz/ogTFb\r\nBxH8JiKfSbBFIoRq8rGyN/+rBN5EJyD5z71LKsGrAHHqu8ivoWAzbo060EkP\r\novWTSsBmonbiRhRdlVpVfLzyYTzQw/HuiArYVjW/mGkUC5wD0JEYGy7Qnwuf\r\n9+GEhspoY77b9DiyPsLy8s8+x/neyWnwdiBkM9LrQDru2MI8gRTlpPeDw15G\r\n8h5+52vclOacFM99D59KdGraeMl84GZs8K0TnEBrEJn15+ISzHmuWn7nnfvE\r\nWTfsmggw4KozQToAJMzH2/b+KzF6f1j3q78+pQA2b+b3yKh3vIdGlBjoky20\r\nbbNhgHxCVQzlFmAMk0vgRpaHFPnW8xLd7O4PDgXiIs6r+SaxcDiAtyRO5pp4\r\nsncEsqekTyyqADB7KkOGPUkpdv7qnryP6UwmpYhI1L7RdYNSgVRryQWDVn4e\r\nYILqJ7+aEfeD0Hd5xrqRkfmG5mkinmHxFxg=\r\n=SunN\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":"8f02909c0bc273831237bb554c33078ae10befa4","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && node .tape.cjs && 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":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.1.10_1666284167477_0.8518750809372955","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"postcss-custom-properties","version":"2.1.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@2.1.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"e4f495236a19c1fe26407c6f54495c37545bda7e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-2.1.1.tgz","integrity":"sha512-aX1UgeStr/tfkchU9U2YKQR3YRlcqZkXdMOiGYMGV2nbXZpjCVhxI/jmtFs8ZcFpY/uj5uzEgU3T0NDq9XKShg==","signatures":[{"sig":"MEYCIQDimeR3kB6FHvJ1AeO2su1ZaD1UHNCRkhw7gJ3e7DCHuAIhALQNjhMV8GmJx8iIl34c4YymOmPNA89++7a+lYqiMMbY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"e4f495236a19c1fe26407c6f54495c37545bda7e","gitHead":"bbe182b5814597db69702129ceecfb28a66ac1a2","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.10","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^1.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^3.0.0"}},"13.3.12":{"name":"postcss-custom-properties","version":"13.3.12","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.12","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e21960c7d13aed960b28236412d4da67f75317b0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.12.tgz","fileCount":7,"integrity":"sha512-oPn/OVqONB2ZLNqN185LDyaVByELAA/u3l2CS2TS16x2j2XsmV4kd8U49+TMxmUsEU9d8fB/I10E6U7kB0L1BA==","signatures":[{"sig":"MEQCIE8vgSNo5pvRMlE9aXMh7LWQ0iaDlNwfJzUWhIbnnHfAAiBhzkHxSnqmg5MyLM92KHrjvgywYOvjyYZ5W7DILOqs8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27612},"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":"c47ed8613c66af3dde68fc4b0a32bb7e0da660c4","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.4.1","@csstools/css-parser-algorithms":"^2.7.1","@csstools/cascade-layer-name-parser":"^1.0.13"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.12_1720258695327_0.25355830306866567","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"postcss-custom-properties","version":"6.2.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.2.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5d929a7f06e9b84e0f11334194c0ba9a30acfbe9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.2.0.tgz","integrity":"sha512-eNR2h9T9ciKMoQEORrPjH33XeN/nuvVuxArOKmHtsFbGbNss631tgTrKou3/pmjAZbA4QQkhLIkPQkIk3WW+8w==","signatures":[{"sig":"MEUCIQDbo6LuDZ7oUehuFUoImTXdh6gSLP2W04BUuLrFKKsjmQIgaxGPSfADoVYOHsd9gitoXZ4MVaKF8RXD9SUZpBIp2v8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist"],"gitHead":"025db4d90f39ba6ea4ae37aa618d899cb74651c1","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"5.4.2","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"8.6.0","dependencies":{"postcss":"^6.0.13","balanced-match":"^1.0.0"},"devDependencies":{"tape":"^4.8.0","eslint":"^4.8.0","npmpub":"^3.1.0","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-6.2.0.tgz_1507311658728_0.8044652077369392","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-custom-properties","version":"6.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"58ad2e5f7c3b7ceab08c276be39136cbc0839c18","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.0.0.tgz","integrity":"sha512-MCom9SEY8jezx2PizQ/QzwQw9Zn5Euknu90/BiAeGJfPZrzNWZy3TCypubmQ0rpjZDmZxbzDJLOFSNJdg08xng==","signatures":[{"sig":"MEUCIQCqRf45MviocgfTPYfUS3HZcSy816yYJbJL0VpKWXlCygIgfur/RduyqRzoT1q7AlPjtdvO/5zPvl3QYvv4nh4S3ks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist"],"_shasum":"58ad2e5f7c3b7ceab08c276be39136cbc0839c18","gitHead":"d4c1e10acda12778b7a32fb0c857aba938c14ac3","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"3.10.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"6.5.0","dependencies":{"postcss":"^6.0.1","balanced-match":"^0.4.2"},"devDependencies":{"tape":"^4.6.3","eslint":"^3.19.0","npmpub":"^3.1.0","babel-cli":"^6.24.1","babel-register":"^6.24.1","babel-preset-env":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-6.0.0.tgz_1494578851190_0.5679331426508725","host":"packages-18-east.internal.npmjs.com"}},"15.0.1":{"name":"postcss-custom-properties","description":"Use Custom Properties Queries in CSS","version":"15.0.1","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"contributors":[{"name":"Maxime Thirouin"}],"license":"MIT","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/cascade-layer-name-parser":"^3.0.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/utilities":"^3.0.0","postcss-value-parser":"^4.2.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-custom-properties"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"gitHead":"8b576c4844225a322c46bc7ff3596823fbe904d4","_id":"postcss-custom-properties@15.0.1","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-cuyq8sd8dLY0GLbelz1KB8IMIoDECo6RVXMeHeXY2Uw3Q05k/d1GVITdaKLsheqrHbnxlwxzSRZQQ5u+rNtbMg==","shasum":"d0cff0da504285587ddffa77c934fe654d96893a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-15.0.1.tgz","fileCount":6,"unpackedSize":15660,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIE1uLcMyj4mNlL4p9iPKq3bc4LgL8qS6F4gTJyZAiswkAiAqWUpqhM/OnW+/hBhsnPFMl7bjmyoVOGI+DzN/5VZHZg=="}]},"_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"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-custom-properties_15.0.1_1771686350850_0.8566166464539542"},"_hasShrinkwrap":false},"6.0.1":{"name":"postcss-custom-properties","version":"6.0.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"db62a42ff6e62f2a9b14c820993c564f224120ed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.0.1.tgz","integrity":"sha512-HRukFnW02hroN+ZBTMhXGga3pAyaRkw5xUSYYYDS2aOamiyLqC+7Zv6joRWc6F6GPpndxwnzF8ELmjtinl9r3A==","signatures":[{"sig":"MEYCIQCBqGlOG+bV4oCoen/rJANuLsDhMuMD7qSulPDShzAxuAIhAKciDaqxUW5bLlpgjufnWE/eA0nLBg+NT8lNYPigaCJe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist"],"_shasum":"db62a42ff6e62f2a9b14c820993c564f224120ed","gitHead":"8e74957bbcbc69acfff039b6a00a804e99b2c232","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"3.10.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"6.5.0","dependencies":{"postcss":"^6.0.1","balanced-match":"^0.4.2"},"devDependencies":{"tape":"^4.6.3","eslint":"^3.19.0","npmpub":"^3.1.0","babel-cli":"^6.24.1","babel-register":"^6.24.1","babel-preset-env":"^1.4.0","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-6.0.1.tgz_1494831170289_0.7874265040736645","host":"packages-12-west.internal.npmjs.com"}},"15.0.0":{"name":"postcss-custom-properties","version":"15.0.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@15.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7cb95c58b03378e466d80d20f0fdfa04a53f7225","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-15.0.0.tgz","fileCount":6,"integrity":"sha512-FsD3VNtFr3qmspvIobDRszK9onKPHp8iHG4Aox2Nnm9SL93uw5GDw4z+NM7zWKiw6U+DSNm24JUm4coyIyanzQ==","signatures":[{"sig":"MEYCIQCqhr+D2VYRGMe9k4KItDWdJ8xxdrDhdYPYzYzLRZlgCAIhAI9vNr8MnYQ5GaWrf8Dhg5lqKQeqL9noEEh6y5G3YgHo","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16739},"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":"69526eb921bbdcafb9d30faeb9da4cf960269957","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"11.6.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"25.1.0","dependencies":{"@csstools/utilities":"^3.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^4.0.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/cascade-layer-name-parser":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_15.0.0_1768376045373_0.3772671237990244","host":"s3://npm-registry-packages-npm-production"}},"5.0.0":{"name":"postcss-custom-properties","version":"5.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@5.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"07f467772863883e45fbff8b6f9f9466e14c9be3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-5.0.0.tgz","integrity":"sha512-KkIIpUT2LWfqJpHd+TU5MEKxQSgJRteHASkrnoTmlEQQiSOvAvOskioZXjoORlsVCirRA+GvPGZ0rNChwBu3OQ==","signatures":[{"sig":"MEUCIBlJOz0eSBh066viH4wXGnoX8IJ4y8ZsuBgZNGVFLyNgAiEAtnrftu9JANSG00dAZ3Bltb1IZOvAtl3xfdqw0KshMdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"07f467772863883e45fbff8b6f9f9466e14c9be3","gitHead":"136250ad63ea395d8cc3201bd5a2e7797d2f689a","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.13.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"3.0.0","dependencies":{"postcss":"^5.0.0","balanced-match":"~0.1.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.0.0"}},"5.0.1":{"name":"postcss-custom-properties","version":"5.0.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@5.0.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"e07d4f6c78e547cf04274f120f490d236e33ea19","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-5.0.1.tgz","integrity":"sha512-jdfkb2yvf3/gT40BlLiU+Rbm+33xvC5uhXhgPNlOx+p3evfXvCVBgU1Kpaj9/T4tS2PDSBtCC++jTYc4ygncWg==","signatures":[{"sig":"MEQCIEorJpHpc24uPiFssjBOTy2LzYrTyuQ1ZMtDY63K+pcnAiAD6VX6oNOfSxq1boOIoAQXShHmX+IRywrOYzsKtNhnpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"e07d4f6c78e547cf04274f120f490d236e33ea19","gitHead":"12ad2bf75c40338f629f8b3d47c921ba30a5f98a","scripts":{"test":"eslint . && tape test","release":"npmpub"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"3.8.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"5.10.0","dependencies":{"postcss":"^5.0.0","balanced-match":"~0.1.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.0.0","npmpub":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-5.0.1.tgz_1461355081854_0.06268338509835303","host":"packages-16-east.internal.npmjs.com"}},"8.0.11":{"name":"postcss-custom-properties","version":"8.0.11","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.11","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"2d61772d6e92f22f5e0d52602df8fae46fa30d97","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz","fileCount":8,"integrity":"sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==","signatures":[{"sig":"MEYCIQCQi4ZPlMr2T3eeSdEjmnMDPMe2o15I2E7doteVEiiMJQIhAPFIVTl9am2CAoKrBBy7qZuMTXi+jGhX5BgwfB//SEfU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":112752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC3k6CRA9TVsSAnZWagAA52QQAIrSpCg9QEMrTXfwa1GU\njul5Y4MzPlsIBnjrRa1avMhzK1YNR/D7/MO0Ki+IxJm+ORIH24RF3bQ9E42G\nCQaK6Qy5ogXmsvZ6bqn4cMR9tW+ccVEOitS51rs7mSj8a5d7EdODiIP0XBVa\nbqT6A6lUHeAVi3mskxMJrpr/dtJaIAwELfaUaIkvCsZfgPY2aNib3cmsb6Vm\njRLvmltr67/R6p+PIs/AStkWHfUrhVSpg6gUM45W0drCc12E12BCpsk6Fqp3\nPB+Kt/w3+RQlBKuGyUDMwzCoj0XGJX7MJ/FBYEpEAmkR2zcSYVet7J+JAZTC\nlZBv6g8uOA7MKOtiSPTjEgrGQbFPeyNmwHGjG+MU782rJFrAz/1IrgD3ZlvX\nqoEph5/6GsAVjqSw6xNc4dW4rmvri3SM+u99ceaPdJRTD3dxoLyKcmqN38+j\n/WkM7nadPkp2xWdj3hhNqjhTv5mHdGmi1mnKpP2oYj/QLYFksPKK4cFxJZWm\nyoXwM3gGhVN0E62aX7Zva+6GOx0J3+nHQhCj8PPVxXpe5kbMoA8/eLTL4Y9t\nOkro+19NlSnfJ957AsYuSyQer1GpWGNOFJ+XA1wcCBakSUlkGcGWpSTej1Aq\nIAPvxYs4j8F9GSuAM42VM7y1QDWEnolF07xhcGpK7pdJ7C+io+o70M0yL48+\nvOla\r\n=UKdi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=6.0.0"},"gitHead":"837da4954fe6683e98c866dfefd64a54bd6b4607","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"12.1.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^2.0.1"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.15.6","pre-commit":"^1.2.2","@babel/core":"^7.4.5","babel-eslint":"^10.0.2","postcss-tape":"^4.0.0","@babel/preset-env":"^7.4.5","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.11_1561033017967_0.4499453599531955","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-custom-properties","version":"5.0.2","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@5.0.2","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"9719d78f2da9cf9f53810aebc23d4656130aceb1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-5.0.2.tgz","integrity":"sha512-9nuxFdFgbzd7EVBzvMTJHdd1+4XKBtm8sj1EnjqnaoO/my9h3KWxBHlk5Uxeka35vR35f+byMqAP2zePdJ8NEg==","signatures":[{"sig":"MEQCIAKVTWifohlCmLbQXbu3ijxlVnEEhL9eCQaxT7Hpsl7KAiAxotpYi9uAwGmj3aSjr1QRavX/xFTIOnXdrXUPYnirzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"9719d78f2da9cf9f53810aebc23d4656130aceb1","gitHead":"317d7387ac262dce0a134a352532e6f2b01034b4","scripts":{"test":"eslint . && tape test","release":"npmpub"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"3.10.9","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"6.9.2","dependencies":{"postcss":"^5.0.0","balanced-match":"^0.4.2"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.0.0","npmpub":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-5.0.2.tgz_1485930963203_0.6356704095378518","host":"packages-12-west.internal.npmjs.com"}},"8.0.10":{"name":"postcss-custom-properties","version":"8.0.10","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.10","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"e8dc969e1e15c555f0b836b7f278ef47e3cdeaff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.10.tgz","fileCount":8,"integrity":"sha512-GDL0dyd7++goDR4SSasYdRNNvp4Gqy1XMzcCnTijiph7VB27XXpJ8bW/AI0i2VSBZ55TpdGhMr37kMSpRfYD0Q==","signatures":[{"sig":"MEUCIH1iPCXgdwz3hb22DE1MygY0t8B9w4PjK1Zu/5AR9LyxAiEAr2FigMj6qaR3hzQ/HrZM3GJYCcraHe1JTqJHEfjpenA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109001,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJco7JsCRA9TVsSAnZWagAA9X0P/2L+5WPeoLA/1jxDvjc0\nE66HO5YEqnvEerOqCZzJSqcUdqUFxCsjh0glV8fUPYE0eWITs6bOetx5O9dU\nuLV5kPDoNy2CTZW/liiEQijF3bU2omw0TCar0467emFK0edKoMv7Xk5RS91X\nMg4EBSFEiiGeag+8t719tDDzCFqFXhvATIg3+wMeZKM4J07K3C+Ka97A/Lve\nDsHYDc6d+uNrqB3q1VbZK68kyTmh8taIPaIJ1liyrihcZkwj9rnEBp4cnTNY\n4Of9CZjYs6Vl8Q0BOB8/zHeUwvPV376c6mV2tfKrOOI4D3kHoHIxS/p2NK21\n2L/S4ALEbykKMcCle3+ZPnNeTcy+lRE6VK6aruPRAmcTiFvhpjYTmvD4ZLGL\nNh91u2h5LxnTlcgPY6lzPMQjSJeZR/0JyuLTDBcKd1N3KXH5XQbBce77zQ9t\nWT/yuy+opx49DdTTx9eHacQMo0CTR3hgNBZlSneL+wc5M6+YJxCXluPGxS6U\nJcVkZFzAbfkc9Pe5WcZyrLJd9Gc0h2OfLyEojyaqvnr4su/pqVCaxafN70zN\n+CeaGgAniYFoAyv6aQwpgnXk1bRboKJzL8uKQnDbBZJJ7tgQGoHMJiND/nbr\nI9WjAchlOvwYv8t/gHvXm0c+ZgkcQNzdk1yA8STpwHsVMX0KneQ3vw4uW/sD\njrg6\r\n=E5Et\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"index.mjs","engines":{"node":">=6.0.0"},"gitHead":"654d59d97d39d1591867f53a0c9572df1a7b79b4","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/**/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.9.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"11.13.0","dependencies":{"postcss":"^7.0.14","postcss-values-parser":"^2.0.1"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.7.4","pre-commit":"^1.2.2","@babel/core":"^7.4.0","babel-eslint":"^10.0.1","postcss-tape":"^4.0.0","@babel/preset-env":"^7.4.2","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.10_1554231915328_0.23641731659650178","host":"s3://npm-registry-packages"}},"13.3.10":{"name":"postcss-custom-properties","version":"13.3.10","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.10","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"72a47708e6123f7757e419ad6f0bccb5f7a7ea6d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.10.tgz","fileCount":7,"integrity":"sha512-ejaalIpl7p0k0L5ngIZ86AZGmp3m1KdeOCbSQTK4gQcB1ncaoPTHorw206+tsZRIhIDYvh5ZButEje6740YDXw==","signatures":[{"sig":"MEUCIQDLTPv6q1Zt/CyUeSKO1ZtmFQL3pYCZXbe+NwiiXyzCtwIgaTNuzOq4oKMcD1MuzVWKZGc+F5maIIgD1S3B3bH5YV8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27016},"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":"2753dad5bdf2318fbe319a3607178c33ad9fb31a","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.5.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.3.1","@csstools/css-parser-algorithms":"^2.6.3","@csstools/cascade-layer-name-parser":"^1.0.11"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.10_1714857317990_0.26842053564150525","host":"s3://npm-registry-packages"}},"13.3.11":{"name":"postcss-custom-properties","version":"13.3.11","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.11","contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9184c10702276ad4bbbda47e0c384cefe4e3bd1a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.11.tgz","fileCount":7,"integrity":"sha512-CAIgz03I/GMhVbAKIi3u3P8j5JY2KHl0TlePcfUX3OUy8t0ynnWvyJaS1D92pEAw1LjmeKWi7+aIU0s53iYdOQ==","signatures":[{"sig":"MEYCIQCilIbiHf4qN3IFD1/35scmCLnMq0eWY6sXgbYgo4TiyAIhAJ1ZPDWcw3+K/XZyUixAj+3szSs+3IeQ3jQU5bCQt3YB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27610},"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":"50e5adeae1f89962a281abb1f92df30f90c0530b","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.7.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.3.2","@csstools/css-parser-algorithms":"^2.7.0","@csstools/cascade-layer-name-parser":"^1.0.12"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.11_1719698379498_0.4487393459224873","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"postcss-custom-properties","version":"11.0.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@11.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"f98cd192cd8dfcd8afa3baa1ad5b5d91d01292f3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-11.0.0.tgz","fileCount":8,"integrity":"sha512-Fhnx/QLt+CTt23A/KKVx1anZD9nmVpOxKCKv5owWacMoOsBXFhMAD6SZYbmPMH4nHdIeMUnWOvLZnlY4niS0sA==","signatures":[{"sig":"MEQCIFBLa4EbhlbB4mkuKz2PpcMOVnC4sDsrjPEOUA/eLx2gAiAMoHXL2nMJeKT0QxZXyj75J5ABDWzbHGj6xRTZOd8I9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/dGSCRA9TVsSAnZWagAA0bkP/AoJKkirCWweW6M+riqG\nfvqhaixCFaH/mGopKn4GxAI5ainIIQmSe6WFRcSx5BhiZUxyFPOoOca2roOJ\nm8Yw99p4DvppJHXCsK0Tf5pIWVwyASGt22wFL2hhgeVJquWUo2hMsHrGUoOv\ncblIfAI84N+PVtU6l0npjrHBbo5O5tqm61dL1k/4YcUUh5eWRw9UOVfrqXmi\nQJjAbjbvc1i7wqFjirMWobq3focAVyZwVlB/ubh2BnH7DY9UaayoDtrc+Evm\nbTXvgS9g4y8bI2NQjQWFFRKvGCZdtJ2d7aBeSBDwCyGsjpvRgy5oJJSy8ib7\nrXJy5VNQKkPx1FUrxLVr/RxhmjFCZMbmfL21M9YVTPCUCSFWt6vh3MW67cDq\nIks31/QVeu5m4rWMaWziISlzL/6zi+EoyslBO9Ywuake4haOX5JCJ5GAGj3n\nrshD0pwy32bP4xXOBV3tu/F6AxihylY/0tj+Eh019mqABRap8jqRuEjqaiRw\nGzG5sqfKEtyxhOdtOxmohIHYh86hpBFC73rO8TBfr3Maj+6xQSAmBTjzsBOd\nROfroT+aji3EsaOQJa/lXCsKvPCnuKagjhlA2+2pvGEHVLGa0jVkLWSyTcDR\nF2Y4e12t6TPu1cdUDywdy37XXn47DQov5E7oV4R05ogpIdUNxJJ6LC8cwUWG\nw19X\r\n=2tyR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=10.0.0"},"gitHead":"421253e9a8b5d4ac9b5b5b632257406fe17aa069","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.14.9","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"14.15.3","dependencies":{"postcss-values-parser":"^4.0.0"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.9.0","rollup":"^2.27.1","postcss":"^8.1.0","pre-commit":"^1.2.2","@babel/core":"^7.11.6","babel-eslint":"^10.1.0","postcss-tape":"^6.0.0","@babel/preset-env":"^7.11.5","@rollup/plugin-babel":"^5.2.1","@babel/plugin-syntax-dynamic-import":"^7.8.3"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_11.0.0_1610469778233_0.6293335072791224","host":"s3://npm-registry-packages"}},"0.3.1":{"name":"postcss-custom-properties","version":"0.3.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-properties@0.3.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"4809795b4fa5480eb9e7683d2793aa20a12de3f6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-0.3.1.tgz","integrity":"sha512-pGVHeTUfNmYiB00CuMEQU2UHQV+jWTctmcnldBVp6ATMKIk18DiqenPZaHKdpqic1I9mAgnUpZDxSyu/WCXxqA==","signatures":[{"sig":"MEUCIBCHJ+2mptSVMN/P94+uQGsukzNuI2MsHBwGPFTnFQNaAiEAnkvrLQDzJYKsQEQn1wNDiE8sxPrMsxe3bL+RTsrMXvY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"4809795b4fa5480eb9e7683d2793aa20a12de3f6","gitHead":"79ee18c646e16618f855d38b8d93f4b5166185e0","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.0.0-alpha-5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.0","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"9.1.1":{"name":"postcss-custom-properties","version":"9.1.1","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@9.1.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"55822d70ff48004f6d307a338ba64a7fb0a4bfff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-9.1.1.tgz","fileCount":8,"integrity":"sha512-GVu+j7vwMTKUGhGXckYAFAAG5tTJUkSt8LuSyimtZdVVmdAEZYYqserkAgX8vwMhgGDPA4vJtWt7VgFxgiooDA==","signatures":[{"sig":"MEYCIQCVDzYn4JNv/MONm7OTzSZoVfYbjqEVwhdudgB2eb4YOAIhAPaqVKm0rVsLEDx0PQ1A3k6ViHx1nx0Y2DeQi/RT2YkN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTjWYCRA9TVsSAnZWagAAcBQP/3NYyPs6Zbws0ZFq5QtU\n5RmcGbcPOcNHVbw0Mos88QMWKGW0j+N0bJcf2JpDt0LCLdpxZgvK3HDEPaUa\niYzePijX/FfWcIa7xNZuCHq+sgHgRJeSIo7gVs1gZTVlQXl1w+hop9BBvjxR\nT4ZdLPjtawz10JwZJnhRn7mk6Ndx0Xxl+RFimRyUdw7vL6wpCoZgzkEE0LWO\nVq0Yal/UxbWJMSNv0lqIgMahoFpP0UnDAPUJySgxt0Ko+3ReX3yuxOjB0+ZT\ny/majHD4/x2UU2AoWbKCKKA4XLTIAR6x2iLGktGxkiQui835ut2nlhw+izyk\nO8b6eEwM0up0MPNDijdJmr5NkmvYLjR9cu6v3MNBIFtFbD79/k9OylZzn8+4\nQzy/Jk6abrZxxeSy3QJHVORBGN4CZu6S9Hu38+kAIKciFOcXeZBC7y2TJUeE\nG042K0aFhuBSDyNHtzLNcyfDz0OLFK3u7lqiYmHvU4lW+Giv2oCRdCGWDlDy\nMO4eplmsdMEL1aJwpZwf4IDqhZRp8MlV0zOCRanChNiLH8sOKNVYQi8faDCy\nOmH/56cEgKKbUru0ZYkI1Nhm2UtvSVUuPgZh+W1NQ4Le22NvOO0lQ6AnkP0o\nbdJpuAfNrWHsr/yWGihKApGFi+CN0u/0Ak7WkYBVs/aDrb9wbgaKqM3lkojZ\nnUal\r\n=Uc9m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=8.0.0"},"gitHead":"d2d1d59e21cc444e408bcbaf79c45b5d96184f88","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.13.4","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"12.16.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^3.0.5"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.0.1","rollup":"^1.17.0","pre-commit":"^1.2.2","@babel/core":"^7.5.4","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.5.4","rollup-plugin-babel":"^4.3.3","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_9.1.1_1582183832282_0.07808920730132596","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"postcss-custom-properties","version":"4.2.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@4.2.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"4ab25193bcb5150887f5a430afe00d67ba79441b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-4.2.0.tgz","integrity":"sha512-ivjcys2IqWFuMhWiDURn39mupRYv7uEDqjC2GpoVM932yjFhoES/UuYxaqC4fe0KeS4e1bcBFTA4b5aJvF9tQg==","signatures":[{"sig":"MEUCIQCq9rauGLtZbNLakpVpuxBlgeJeoRDmTuikX6RMBqJovAIgJTy+fFb5eSJbJSQgSlMkfkDRmnIYWLzqoNCgHKIGDCQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"4ab25193bcb5150887f5a430afe00d67ba79441b","gitHead":"ae55769f675d20172d9727b62c098f21613306cf","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.11.3","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"2.3.1","dependencies":{"postcss":"^4.1.4","balanced-match":"~0.1.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.23.0"}},"4.0.0":{"name":"postcss-custom-properties","version":"4.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@4.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"0d6aedeea500975adc10131d3b0d62a47b72db0f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-4.0.0.tgz","integrity":"sha512-iUalOTQpnSws4Ilv9xbfxUodtoKycQcaHjNuTZZj5toxoUbXMSveZK5DYPRYNgWJxt55hF3O5DDXQaYa4vJH3w==","signatures":[{"sig":"MEUCIGKv2jBFecXuSWUEMlrgS1y0fTNNxCxzhhYps/4DYBh4AiEA5Y+Pz32+B1iPnClHMpNEk7Rs9EylPs8UlJ7MIIRYjq8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"0d6aedeea500975adc10131d3b0d62a47b72db0f","gitHead":"b843b93f6e4eca396c34872329da21c131e31d2f","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.9.0","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"2.0.1","dependencies":{"postcss":"^4.1.4","balanced-match":"~0.1.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.23.0"}},"0.3.0":{"name":"postcss-custom-properties","version":"0.3.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-properties@0.3.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5cb696b172826233bfa5092d57744687272c907c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-0.3.0.tgz","integrity":"sha512-LRXa+hcyf2Buu/AaDzURstIs99zDL/euzFy//57UnunfM8bJoBqoIxoks/d8aXEbkJac5Mz+sDsZhF7VvOM3Cw==","signatures":[{"sig":"MEQCICZhLZMEYon3YzMkMTvmVjSoDVtZOap8QtsC1YKUnHhmAiAVP9dAgmQ6JGpEe01ckkViooHeV0AUEX8GAU5Sk4seSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"5cb696b172826233bfa5092d57744687272c907c","gitHead":"8508fe5f3c5a69ed121af9cbbb45074eb1c7e7b3","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.0.0-alpha-5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.0","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"0.1.0":{"name":"postcss-custom-properties","version":"0.1.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-properties@0.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"bfc65890e4abddbe8001ff852d8d84ce8470bc00","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-0.1.0.tgz","integrity":"sha512-Icw5u/Cm5fXdYCc8XbmkOd8n0VYQJFYOKnFuDTtF8OKcRJOaW7g0ZI6t26wAAFVjXEe/T2d1YlZKzQZKXnIFbA==","signatures":[{"sig":"MEUCIQCub40G6gwBdc1R18HUUQF3heRnzzyjNEM7LAfwDGWptQIgPCmcC4tlui9V8DCijDjQi2otl9Y455lHtKTWzWfja4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"bfc65890e4abddbe8001ff852d8d84ce8470bc00","gitHead":"32189bf7ac6735fffbc91765ee28da2c791d968b","scripts":{"test":"node test | tap-colorize"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"1.5.0-alpha-1","description":"PostCSS that polyfill CSS custom properties for cascading variable module","directories":{},"dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"tape":"^2.13.4","postcss":"^2.1.0","tap-colorize":"^1.2.0"}},"3.0.0":{"name":"postcss-custom-properties","version":"3.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@3.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5aa98edb7e7cc0e1497101b549b2b9635d9ba958","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-3.0.0.tgz","integrity":"sha512-XxEEcz+K59H7jYHVlyoYrlokcNwMlT4X85Xff9QYdf1tDcBSIM3jG0lGu4h2i6f+mwzmHGGuIVS/ivSJbrCDKg==","signatures":[{"sig":"MEUCIQDQlZIoL6KLFxx2qPGuLaWEv5HSYI5k3f774CDrWdQPygIgfLiNrFUipyIYGIByyAH26cd0tlHtpTMwk03fIqm7NhI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"5aa98edb7e7cc0e1497101b549b2b9635d9ba958","gitHead":"51598c5b035cca63725345d5aadca722f01588e2","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.18","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.35","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^1.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^4.0.0"}},"12.0.2":{"name":"postcss-custom-properties","version":"12.0.2","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"62a9bff57f22b21266329752a6eb97b5896ad095","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.0.2.tgz","fileCount":7,"integrity":"sha512-dpeF9PFr9gGmVxjYNBC35jvBwkga7jIfKLUVUsdiCaZWwiugS6c+hsf8x+NJ0OcvjXVTluqm50jLw7qRzP54vQ==","signatures":[{"sig":"MEUCIQDqweAo7hGyySzeaFm9e6AIGvmeRMo9Rh4qxe++SZ939QIgE5dED/H2tVuj1909GQeBOk1S6AeGyos2Lh1WOPzq+m4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cggCRA9TVsSAnZWagAAw54P/3TQ+jcS5zWd6Mp5rK+D\nSMqK5O0FZp/zhBaFKoZSqY0Cy9po04HjNDtsAWbXcsUKDOSoKBh6huJFrEiT\nDt+WW2K5IIU5+14ShZWcsZ4xtFWL4DCwgyzfRBTZUF8t+w2vLCnZBHDduYvg\n4GQlWUJV6Hqk3jaXG34LtrpnPYEzEN6Duu8mQYDmK9RbhRUIyron47HaFr0t\nw5f8j54MzQCzz0+rlINemoy6hufq88dAo4Jxup6SY9/EdMsRApaAEptS+/nj\nASPbbh2mDI7Fp02XnG79u2TlQ1N+XhM6ywMhP6J2fZPBkHFYuFfDevM/aIps\nG0Wq7iG7mphpSHfG5DwcNlxexqNHLGA5DuU3HowYiNa5saFUypniWcaC4tA5\nE5nbVZwEYpivXQMSCjFDnpE/2+ADpYFfIJ0/YOAaB+C4BbXAVIS3TUjrcaYp\nEE7ahqE8eXvnPLXOrAmxBaPtC2faqCn7gR2PyuS1ZDhpCVp8FeCg82oLSuMl\notDjvd47enr9ATOsivp0eV7ADCdGQtye4frel59xd/ygXnyYk1MgcQ0wBwrI\n7Kdsnq3tBCBhFl4mWUsORJ5GVMr2Cc0mKYW21GyLkgGDs79W2LkFVzjymO9/\nKJwnwOxJt3vtc7HGh9tRrBHSDj2jY6CyvRyEPihWYJDaWdXEvXtAJfE50cVH\nQgDp\r\n=A2Ko\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"66420eb07a4736f60ffc964d6315058acfe8cc72","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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-custom-properties_12.0.2_1641138208022_0.6446475569285512","host":"s3://npm-registry-packages"}},"12.0.1":{"name":"postcss-custom-properties","version":"12.0.1","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-custom-properties":"dist/cli.mjs"},"dist":{"shasum":"9aab8686e73a899de9440ce27cc10595ad3b0e22","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.0.1.tgz","fileCount":11,"integrity":"sha512-Z3WjuML7qn6ehesWD4vDqOmM5CZO/qfVknpI9/gDOwMNhcLg3OSgT5wENR4kFDZtCricAE7cxL97bsj5lFnuZQ==","signatures":[{"sig":"MEYCIQCGhMznLgk0AxX60voT1Ak5ByGmuMkMH/hBAYiRZFjhmgIhAJLpLFlx4ptR4xOEPB1O2mUCQdQS+LvipQVmTgHPgEVt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":172382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuw1bCRA9TVsSAnZWagAA5T0P+wUwQ3IIRF8VvX5JBuwW\nam3NtEslSvzBS1GVrdXJjw3D9JD/ZWGSlSLxQKuGMS3kV7rNhp3syyM8z5iV\nN7T9bTIvTCAqL/XEXA/Gu3UYfsuFgKbFN1kkT9ZXqDeKumGsIxSpXWOtm81h\neB3e9D+H6D0W1AeDjsWUNien/bOvySp9JPs7IRQJxjF4fwGHfNGV/ceJCRtb\nHw5N5T129Mmll36RoODF2Bvg7Qvpfae8IY+DKq35Cx5QT/NAY5aiNS2QIHVt\nTLBkx6DVJM+TgK+4SE7SG8w4//3s0eTwMWsXAk8kG4D+Hui/k7mvEy/sfnh/\nh1sTesG28EZd9cLvAspV2QPQyRx8lSTiWsVf6rUgBTuhMv8MIdObPGEz56I7\nIkCdy0e3lkaqp5oqXUM81GxiVs23B1byySl+13ya6ruLA3d1WV3eHh1m9Bo7\nT+AInp3i7bTW2OwVOqJFMqzVwGZdq1/Mo1zs08ePKQkp2E2MWXGTBp1Mz5ea\ne03tONMuHzhjKHFOprFHBH/J3+X0e9oyP96Mlf6LzLVE3NqSgFFammjT5zd7\nLkU4FPHr9L7taEvfSiDHcfSR0KVYyU+LNdNBpJ0N6xUqbUJ6zFwTIMhSJpA8\nciAQbMkGQFDZnv/2k68DIPsUcr9VAGzQjIWtQF/y8HHzAR2MrfNsAI2NSXfa\nfAh7\r\n=W2Tr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"0810157a30005a9a86c70bdbadc993a967f3cfdd","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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-custom-properties_12.0.1_1639648603613_0.3135534829943014","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"postcss-custom-properties","version":"12.0.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"fd01ec9bd1462336ea8af7ba3c1a2c47c203031e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.0.0.tgz","fileCount":6,"integrity":"sha512-eAyX3rMjZKxdne6tWKjkWbNWfw6bbv4xTsrjNJ7C3uGDODrzbQXR+ueshRkw7Lhlhc3qyTmYH/sFfD0AbhgdSQ==","signatures":[{"sig":"MEUCIFFNXt6FinqEYuQAxvLybSMVMECNpcFRtHX0HJLKwHGKAiEA3Tk50XGXD49gxzz1U0jbhM+rjU3RG2zWzd15Vw1svPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45114},"main":"index.cjs","types":"./index.d.ts","module":"index.mjs","engines":{"node":">=12"},"exports":{".":{"types":"./index.d.ts","import":"./index.mjs","require":"./index.cjs"}},"gitHead":"5cf4c2b0c2b687a36a2021c2dea3d4a71274cf42","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"7.20.3","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-values-parser":"^6"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","@rollup/plugin-babel":"5.3.0","@web/rollup-plugin-copy":"^0.3.0","@babel/plugin-syntax-dynamic-import":"7.8.3"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.0.0_1631899453887_0.9297645188324273","host":"s3://npm-registry-packages"}},"12.0.4":{"name":"postcss-custom-properties","version":"12.0.4","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5a4c76ae7e9b826f9e4555bd4e0d1999ce93b454","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.0.4.tgz","fileCount":7,"integrity":"sha512-8kEK8k1cMIR0XLGyg0PtTS+dEY3iUcilbwvwr2gjxexNAgV6ADNg7rZOpdE+DOhrgZU+n4Q48jUWNxGDl0SgxQ==","signatures":[{"sig":"MEUCIQDpdo05w0bsFYfpMmWfvkHbxja/aBMsZploYkxlPNT/XwIgEwjGf3Y0WMrk9XGZ8Eb7mRGWWo5q28vk//xGWjBzFWc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2G5jCRA9TVsSAnZWagAARWcQAKBXB7W7hU6C7V7wmkDs\n9eSEaRs/ZHN85uHNXkrbcFJhQHZVR28DwX1AIFPA6BC/48CCORQ3l93qTP8e\nDbfJtY2BMkN/P49cqhWUK/MXDpr8uFZidPOwcae8zxF29RA6EfGtwkOW/Nrc\naOazn/eRb3wmQc1hiqeWLqTfMKCexUoClDT+P5uVgdBCpFzjP6LjLIotzCwh\ny31WbGPkcLtRLG55I7ASwzA7bSZ/3yYX69owMRuQYkhao5IQzNxlu629uruM\nmj/nDz4tsn+1n34ht2T2YGe/GwlT1u6E/JbaHlNUT/v7BGnqih8M+yfdNOKf\nHc39tD4RrCMhQXucA3WXA5XXyDaqaglGLty+J+25ayNeKBADRiYv0A8IiJ1C\n0HCjB8iQB/vSUutw/XTg3NtJHNEynYtB4RdZ/4nNzm/Er7K7w9RVAhjl83NB\n85PzNqbJgeQAwc2PXPGV9T4uGlCRxyUUu3TPhwngbb/gTxiGaGqqXfGUtjp/\nNFpZCV/VjtaMd7kA6gM1wVmMHJZ6d2YN05HQxKhXPWalCQdCrtzR9xwC5LKg\nQtpA2LDaQFJj1Z/s7KT51CVPFiHHv68Y4Z/JWbAcNFqfTkCgZo5ju5dz3gcV\ngI0P8QG7ZYe6kURyEdOY/qSMK8W475PugznMcMZbvtEf+mLJxW9XeMAZkoyW\nI0Jo\r\n=N7Zd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"581678f29dc187f634481614d191df400fc62d6a","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.0.4_1641573987866_0.37694047817630594","host":"s3://npm-registry-packages"}},"12.0.3":{"name":"postcss-custom-properties","version":"12.0.3","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@12.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d48c1922027779e8a778e476d4282f5999be9e6e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-12.0.3.tgz","fileCount":7,"integrity":"sha512-OLr+TiS1ZlYQNNI1wGL/xWbwLxuPlksY6kn6WHXuVwtsqYUOY9tRhuQI698Q77YLfMOqLVoGCJeZ+1r2tbwvCA==","signatures":[{"sig":"MEUCIQDO9SdGFOoGF70YE37a8g07rgIc5noiuVc4XVqUJ76gNwIgTbaKF+qGlBQTPwZgytCbLNxxBEbQKdYJ9Ln4BSr9sSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2G0VCRA9TVsSAnZWagAAKD4QAJtsjKQRBt6dV5WgqG4E\nTR0XJhZ6hY+fBk2Rd8plH7Ua4737Daw3EtIDqeff14XI8q1sCT5/oh9E0GHr\nBfgzwCUsxqFpHy3hGE/uXse+3yW0d1Xc2tenBO+bSDSV6wB58BZosQ4yYbAU\nrReJ4UqPevp7OHMH4UTzLGfssMNe+998J+g2Z7cJ1EngVQdupTs5idM1fba/\n1wr0QoYHclb5YXyzWSOdM6MC00p/fOOtqblOQI2k3EWqaAy9rgZG1Th9X+Ub\nQdpqnadZ9nIU/yhdJos5ukfjKKBU66GIv0tT7PfcAcbfXrnTH0VZl1q/sqP7\nNLW5qBVCAVteZvd8gmwxodHh/b1+4PSF7GB37A+QwTQ1LTBxDCcLlgkFEZBx\nO1L9Ng1KFEj/4Y+qPQyAcVCZHoWghq+U7VtbOV4zb+58uDeQx2FElBCPHrZ8\nrmF/gDOxdfLVadNmLRGklMPfeRUQ3nFsW9ksr4s29pLqCtdTgaW5KlTV2SKK\n8Nd/MRbkmsoVYJUPkGD9BEjSpQO+Vxl8XUtSp1XRmBc+RJOctNca2GLvGlUC\nWsu1mY3wFIx72qgGGDgyZ6p6eDNFwqrpTIzLNyrfUFGf7VMUyW14g9m5Ww82\nulSkhVuOQbCEIWruzjvGwgcvhVS1mk04jKSlKJZyzdd1uRRFUvHfhZTPn07q\nT1DR\r\n=hHfy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"a812e8e20888217804bc6fa2ac473aef96c04b07","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-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries 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","postcss-import":"^14.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_12.0.3_1641573653735_0.2176772354992338","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-custom-properties","version":"3.0.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@3.0.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"59c75e63f49b024cfd47460c11d0550017f90087","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-3.0.1.tgz","integrity":"sha512-OpOLCHIQNOgxSPr5cKbZDwqOML8XE0ZjtaoXtsgMLfqqSLUYuRJE9sZcjPmdZBUGAffTrM5rTd9kMBeXIgyHGA==","signatures":[{"sig":"MEUCIBrspX0tAymBNNCFK7nQOZdHt0mTs6Q9Vda0JVKJTdnrAiEAzrWk66+cczE662fXFWpm+xD/TN2sxhXsNwFF6/KeAh8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"59c75e63f49b024cfd47460c11d0550017f90087","gitHead":"8bba058fa92a1a197040c5e7fd7a4d68d4f33695","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.3.0","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.36","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^2.0.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^4.0.0"}},"3.2.0":{"name":"postcss-custom-properties","version":"3.2.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@3.2.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"0130d58fa05c65f17c463d5836a3759db2e46335","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-3.2.0.tgz","integrity":"sha512-rY27XZLzZ0BfnKqbgQTLvXr/Wnm6dbvRliNejqGmoeqmrvfGslUHIyeLit0FWrh65WTqKAn91kJVUf8Ld8dU2g==","signatures":[{"sig":"MEUCIELRmsfcV/MQJEP8r1pXSB3aJ+5n96zZ52BJhtrQOE3ZAiEA/+vEoOYidWTpAnc7axILcGSzlLKILr0QY8cyIOKJPtU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"0130d58fa05c65f17c463d5836a3759db2e46335","gitHead":"a5aa2bfe92d7b5414a9037efa3da95609f2ffdff","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.5.1","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.12.0","dependencies":{"balanced-match":"~0.1.0","postcss-message-helpers":"^2.0.0"},"devDependencies":{"tape":"^3.0.0","eslint":"^0.18.0","postcss":"^4.0.0"}},"2.0.0":{"name":"postcss-custom-properties","version":"2.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@2.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"137dd947a5cb4297d4d49cf46c95d45a9cc6ee00","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-2.0.0.tgz","integrity":"sha512-5A0bbCxuPJeb9ZKI4Dhdmjk7EKYvyx7YvvuQzGsZP2v66SXWLT5QnFkwjFK5jxUTX4iKIhdtcVpoODpb22cSEw==","signatures":[{"sig":"MEUCIQDhmfzP/z+7x6Xbqzi65KJ6kO1KELauevc7gn8oYc29rgIgRVhE3zUbDzawF0Af8/XjpQGhXgsPbMPJM97hFr0qcLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"137dd947a5cb4297d4d49cf46c95d45a9cc6ee00","gitHead":"08d19b4782fed1b48126cc38b15b5efc9571a027","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.6","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^3.0.0"}},"13.1.0":{"name":"postcss-custom-properties","version":"13.1.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b6f0ae00381f636932b8ce35ac77b406659dedb8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.0.tgz","fileCount":13,"integrity":"sha512-O0Lg0CuHwADctEMBgGtaeams7eFES8pXo/9zBClTbRVdU3LFAkFluw1l9eYnJ3rtidp80EGbAIuiisEIu1Z+uA==","signatures":[{"sig":"MEUCIQCqGzQfjB2WxFh6JuEblaUB2sv3wz3daktHzDi6wsQnxwIgeLUGp9WUR/syg0WVrlI67iGoY1jpnsuBqYm6/nTZF84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz5wiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpegA//WUBha06wWuXtzTQmIdWArVAnn7x/1Grla9WNk//XtuYSNuig\r\nz57xMtMmfW9pZ44wLsaYnd0BZ1Nnpnw+8JFQq6yOQ0z+Ieh54qGST6gpxqif\r\nn5vk/RpPY0VXotDtdGGmTiUBzVUwkymwCfQQWGybTv46ZCJpJXx/DOiqw3C2\r\nqpltU3ATYo4SuqTEchIZ6bR4V9N1l5Shc03tC+23IAzt9UHs7w/6uCPGLptk\r\nFAvTAP+MhErnjIthaBR6qh8TQZ4XF0mmU1VP4FC70JO66LCiw38jykHsMLYR\r\n5G5RcQHnWBFQwrMWjqPtlbwJETAZe++b5geraB0CSPsWW6aE1E0g8gGUTu4G\r\nvDmty5FD8ftV4v6emyDON/DH1Uenz91zQ3Vs5094j53FSUeR/j/6ndFtBF6z\r\nMJNv/cPH9/YwBWz6bU905PPGVdVS8ejkddWfzyEV+r8mej0Q9t22fOcCwsXB\r\n9XXa2epMrWhS695PtT5luCOh3pDQtGLopuwRbGXHsNCU+BY8Hz2Ew8NqOEcW\r\nivTtF4cuGBZhA+1sQszbjcRB4ISD9DsJVcdL0ggTkZxbaZ/rz8+GMiTfSVYp\r\nWC3rE9F0H0fosbLP2ZueEEgquBsAAqmn7nOoxy5qZl+ImgCPzJBcos/aR0EB\r\n2SKvUY/GuOnSdnifAb3AYfz1plrk5FTjY6k=\r\n=IB2m\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":"a7ea1ce300803e3c342e7fbec0b36611353ec8aa","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.1.2","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.0_1674550306403_0.9490093763929346","host":"s3://npm-registry-packages"}},"8.0.6":{"name":"postcss-custom-properties","version":"8.0.6","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.6","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"404d2f0848abef200807ac1587ab7758983416fa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.6.tgz","fileCount":8,"integrity":"sha512-9lBrDTCQCfe7PesXP4om76mLIuNnBXjdJ5SuVcPZpDtWpC2Y3KVlXfC68ha+wek1R7crWi10xW8Hzw0fi4LIPg==","signatures":[{"sig":"MEUCIC9k8vuMSL6BPQuVmj2au3Bm9YXEYKpOFXCtzedXbEijAiEA8wcW5oza4iCrhRqFaUIM2FLx/fr6DZexbicxwnmGTB8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106446,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqw4GCRA9TVsSAnZWagAAr0AP/jVYpIdVwc1Yy3to+U1B\n/2MzJabqb55kVFUEygYIkYIRIyUhd4Vy0ArTCViqPWUfUZ1/W6975hfqfA1O\nryZyHSXNKrlWLb7L2xhBuTwcJFRdvBrwK1GDICPQufsglvcNY+X3XO9YS9fu\nQD/OqaU5pyNN/YbvEsM4PNQ4XqijNd1xfyznLpdwmJEBScKvouAGBJbG2Bin\ntHco4dgtra4y9QqNm3nnVTmMUDhAHQpxq2LheKDbTS6Zqak5ptB1uiifsSH9\nduQsnd10J/ov8m0Z5o0o6Cn24pISSbOrytLbIr1fO2w72YAlKAUsEkYE+f3Y\nXtzyMdblckdZlPwvFzz3VrwjHudaF3o85rTWNINesLFIQe6+oqvt+T9ElGq0\nt+QVZWwl7v9EbYggVS1HGUZso+XuYpuU4KneuxXdnLA0YdC8I1eMDk0MY7Zw\n4UcIj0Jgk8uf/vfiwaCwXEEQEGi1t4CD4lT0gKBAfOrZhUg/bX108kgqzFE9\nUPI//mFK9GgEEorNjRXCl0h1i+SUL8E8tjOcRIZhyYyDwLZ98DeOr/EBlnOP\nTLZUfAv/9g/45saIsaMQ4QriBV+gZaIP8ncg66aDIFQKYU4B38ch/Iv1VQlT\niwEZwl+P78t+pjJZLKlv0y9+gLZrM2rfmp/QlP3aC0p93MSbZDWrtb/tVmNT\njyu5\r\n=gC9t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"25d68db4e24c26316e8642e99fb3bddcec33d92c","scripts":{"test":"npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.3","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^10.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","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.6_1537936901896_0.9414213122621762","host":"s3://npm-registry-packages"}},"13.1.2":{"name":"postcss-custom-properties","version":"13.1.2","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"cfe1d4c3684865fbed8952456149654888400ad1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.2.tgz","fileCount":15,"integrity":"sha512-5d20sptRxUgGpijXsgj4yT2s6VZo1v3Y2fi0AaRQJN2ap9vhAWmNYbOM0yAiIoofRgiIDu+Aps2W3/l3Wl3fuw==","signatures":[{"sig":"MEYCIQDI/M3N+zx9Ir3FtfCYRLr1HMKrJN9PtcfqrMNVEq1C+wIhAJcv4pig2lYCLOhUFrsh0C2/Q1TkwoRp12FS0ceUYTLV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4mhUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3GhAAg0WQGqRK7pxnaFDe+OtipdsxzQeAnHXAQRNYuHRK0M8J8fG8\r\nOmXs3tFVBFjcih0qlwowi+91/XOSdwrmt2etBiFfUWpExNU1jHnHdYIc56i5\r\nHFckFzHIGk2qFPKVoBqaar1DQ/5UVVaxYrF86wzfteolmR/X2qoxl3XueLd7\r\ngy/JRW0mdAn3o+xTdt6a8gup6UNxbI+j1HS+ymmY3KpDj4q3sUOy2hi6rKQB\r\nWuitDhC6Pild0Gewa/avTiMlio4RrtHQt6rc3PLBUqGpWzOp832PUXwn69/S\r\nP7SepaG2gLQW/lf92pLBhG8KQ3nvrk/xcwPS78NQfpmFJ/m67/YNXymgb5cB\r\nZsJEawzMVJ2Os2FX850Z1bIvc21VpLC+UL8En8WA1OSVICAsBxdTnqW6bmxh\r\ngjo2qgZwlF5aHr9XQlE1ZEvf8bod1Zldyp1E9ygWrui8IVZ7bKRcQP5BAG/3\r\nDgrMbzwLPjhWau/2YQ+EjjvD196jaQLjUlGQNSVjg/99KTwdhPWq2Xibslou\r\ncXdAiaW4+cCpS1BSMsSuaCqXejVn1tmxx0Of6pRS9jG3pZ+Y5yKQivf/bU6T\r\nd+mvZ0J255fP+lCBsAQoBgW4UAjF7T5XLSh7T3w3dTw+ZKc36SWYnl0B2GWw\r\nkIIMxzHSdpUmU9N+5WVslU98y+PM7Qv6R+I=\r\n=7xvk\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":"a2c2268367410fc18f307c3565671853e1cc0343","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.2_1675782228512_0.7170671761842016","host":"s3://npm-registry-packages"}},"13.3.0":{"name":"postcss-custom-properties","version":"13.3.0","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"53361280a9ec57c2ac448c0877ba25c4978241ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.0.tgz","fileCount":16,"integrity":"sha512-q4VgtIKSy5+KcUvQ0WxTjDy9DZjQ5VCXAZ9+tT9+aPMbA0z6s2t1nMw0QHszru1ib5ElkXl9JUpYYU37VVUs7g==","signatures":[{"sig":"MEUCIQChkRcm0gSmaxyC0X5y+I0S4Kzz+4TFVUoawx++fm3PGwIgYWMpTovlyDbNRLJYHhogPCYbjBM1AM6bDAK40hmt610=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38427},"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":"559f35fa4546739cb7751db3e560629efd955ffd","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.6.7","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.2.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.0","@csstools/css-parser-algorithms":"^2.3.1","@csstools/cascade-layer-name-parser":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.0_1690216087229_0.3735216304016791","host":"s3://npm-registry-packages"}},"8.0.7":{"name":"postcss-custom-properties","version":"8.0.7","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.7","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"58998c5d958faf4cf64eb7d2f7fc9b318a4ae44b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.7.tgz","fileCount":8,"integrity":"sha512-vYENesOdikH6drKTtRW9euhg4wK345uJflU1ffkMhK6rKUq8PTRDLy6vqu1jG7JwpK9XaKPpACKWI4Kn3ZdEsA==","signatures":[{"sig":"MEUCIQCPZDSWI9aB9PmEJdHw4PcZYxXXNkxRpSiLM+xVlByfRgIgD0iL5FUrsThZSeM9V/N8VWrqr2qGA4KiASUJzaN+OKU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs5nXCRA9TVsSAnZWagAA6kMP/RVpCc19M66+mjq8bi73\nfX96rDGsfLx3VwjfFxz+PK41xHkydcsAt8OogkZhJWEADuVQIYhRUDNHw05K\nyAFGRtdWxJYzLA74Xb5OP93IEvZXYDqXX9WNNuK4a16wnXMzj8nPWipqnNNz\n7TJJ/XaSPQOAkpxrNAkSHJlEOvJoQwX9PPJ6Qq5WGCXzJ23HZxT2WXsBLof/\nEBKvcg31cJWy6kDsjpMJsBajQOQIvbh+4+syygq3Gj4N9OmuON9eXAtWQVOA\nCFKfbfKyjPqDDFkQ0vgIZIRl1dmBFo7+dBtbJmq9YBdZNoHiKTs5OhwOJFT5\nAOAY9YdbV8ccF/oPznE1MpnGQzmXYBLPCpZwqL4MS8P44Zdb1xo6VdoA4z0t\nxIHkuUeyEXy1nXL7eo3sDtIIwXAO/G7pl449TFbz753+DUDyo695+/wGUcw9\nrcYY8sTTIjNIOLs2R6ZYR+6t+jKga1tf1+v36g/tdw/l7ZfuJOeSb3kzVXbf\nBS9l4qZm2eFMRgpRWhuvFdkwmVbvzL+uhuKMIrvT6yfpBgzUvokBEYwLk+yc\nA1si6VNkw7Bm5ffqia17lkOwUaXKBneowYhVVlxcEZHkaTETh6RYLY2WJqp0\nZNURw2E27mzIYdhghWaWcRWVAIg5OsLl0A2EFORgxd+/7PnTl7F1oH2M2x5e\nHuRk\r\n=rW/J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"a2e2b49e38f0639676a73676c96a78f3ba4bf2a9","scripts":{"test":"npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.5","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.1","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.2","babel-eslint":"^10.0.1","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.7_1538496982471_0.47092198394757667","host":"s3://npm-registry-packages"}},"13.1.1":{"name":"postcss-custom-properties","version":"13.1.1","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1d7b7d589124c3f5dfe9d255aba5ac15e9bd017c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.1.tgz","fileCount":13,"integrity":"sha512-FK4dBiHdzWOosLu3kEAHaYpfcrnMfVV4nP6PT6EFIfWXrtHH9LY8idfTYnEDpq/vgE33mr8ykhs7BjlgcT9agg==","signatures":[{"sig":"MEYCIQCDkbg5hPqdAL48ny1j/seMwqUcdNECFSWfv+Cl6kEAegIhAMPTuVv9bwMqenzKYylZEMzBiOWAuVGkv0a0TAcSsgf2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31538,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NAVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmptbg//cLoKeipvDGk9gtMSquWs37t8fFGl/9eMTttXryf8dQG2KLuR\r\nCFPwwGATItPEa2A9mQfDuHe0kkmF45RgZRaw+5kN3+FP2LZJN3q3h4ck5Opa\r\nwEQKD0Wof6tLuhXdXeY3swpEZ5lcDLdKezmeyWDNmMIWUx7X/9zT4VUSMt4i\r\nPBkhY/P89hUSEEiEU78/rwZOtTBElbSEsGcGEpA1N10/dlNEUO6Id/jCZ0wJ\r\n85ipuzvInXiA3as/hULAL945AcyNw5btewSSlYq06ZR/MFdzhvqBzYEiTvbk\r\na0VaYZH7veUkvLtwb+RCtFB88t+lds/e9OQNHPO9oOFbdQCaFIFQycgSi/aT\r\nC7hY6pdEl3OtCa8ne48islPf/HnYtvq+ZZR/CVX0+SziBLX5EX1P2dVQ8F6G\r\n6PEAOJzPUdxrwbNRuZiO3t7FtiV0J9p+pUlv+hXo4nyH4ToRgb2JutAYUvVU\r\ncK1FUNBpkrrXMissCu8yxc1cFxlza7vPdyawpuhcU1Kp7KiUZwTRDzK+uQg1\r\neZvA+fjkv3DsocNG2CTzPsdxKC/0IAO8mVdW23ni3Ja8KZV4eScOBKkPVW4J\r\npHzvfVnEjR/YmBf85rN2c0uEHlMb6EB4ysyRcEa9ASI0uw1USEcBTrl+wgVf\r\nCzgcs1/fUYQSrOdk5g82adriYSI2MvkSwA0=\r\n=9wzv\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":"e84b78e50f275b40ce39141f815636cffeb2175d","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"8.18.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.1_1674891285512_0.08885041589332587","host":"s3://npm-registry-packages"}},"8.0.4":{"name":"postcss-custom-properties","version":"8.0.4","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.4","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"8d8bf5ae865b3e9b70daedd04509531d6ca3e485","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.4.tgz","fileCount":8,"integrity":"sha512-0R2Lgp2PVVKi5+0mVDZYrn9wuHNKUqAryNqiOZ2m7K4jWvh9NAQXZK49gc18MWvMrTw/fOp8LXsF7djZeH85hA==","signatures":[{"sig":"MEYCIQChpEQ3YIco3WXOB7OqAjS6M3r0N15+6h2LrkjCLXGy+QIhAIkMNF9LPZmy7MJxrvoPYEIeRaeGXu0uMgsWQZSjkQKm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpAGlCRA9TVsSAnZWagAAuDoP/3JqpyRuY/kxPZoQUFXA\nA+UrkGVMdBOjyyiS97+BWGeGRYLkR/WQ7+avKeMq5xiVzHW6wW9RPggks0Vw\nUPZusntz2lWm12XIUcsmDgmAPV/4TLPY/JbpLZKVi6xOBNdy1pzzvZoVS2UO\nIRmabZd3F1m8napI0AmUbWFF1Gxkbh4mkzBaXhj+CY4mZ+JHU2IbLdmZxJ3x\nLnC4nxbyUaxZb0GM8YFuUw4DnAunGdaSt4saPpCc9xaZC0D5oBqFFLTKIGm4\nCCq6d1CJwRZr2v7vxRRNDZdUTfmOYQWatCjGko7RgrCtmELKb26hqQ7uUUbW\n22t8+8W0ODoxojIvkGbjhqucMI4TAjcfr9ykvZBOgUtNyoJDY2vP0dwFmLEo\nIYcuyHhhaHsSG+05cwm+/A97CIXC2FjZdfTOkxrz4I7cq8b3exarUyR5I/M5\nIAvTkSuJLD7Zi1fjhqA5aNAhVCUvP63dlY6ujKHYSxFQ1TMYCcqvRc61/UWV\n/cZSVvuLcoHGrhenBE2wGcnpRpX2rHwCq5C9qXG5s2o40M2DGnbMF6nM2heh\nLEZ1rXD7Y84YGw7xnUeAicA29+aY3SGwJ8DXfkrWevpdMrEqUz9UAQ0BTQKP\n0s95ftnopUVWAOf3WrpGQqS8EWN+ZXawgfLKnNkj15qtBa2HWHOVDHtPMmLJ\nKB3p\r\n=kX5L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"ceb2ac4beb1c54dc17d21f49cbd314ef3b0e5aa1","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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.1","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.4_1537474980990_0.5875680642353038","host":"s3://npm-registry-packages"}},"13.1.4":{"name":"postcss-custom-properties","version":"13.1.4","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"590e5770137011001602806da51243b6c82c1cde","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.4.tgz","fileCount":15,"integrity":"sha512-iSAdaZrM3KMec8cOSzeTUNXPYDlhqsMJHpt62yrjwG6nAnMtRHPk5JdMzGosBJtqEahDolvD5LNbcq+EZ78o5g==","signatures":[{"sig":"MEUCIQDkOjKoVFoa3yzMeiqoYdXweWwnPaR5yjbojEuKotVZcgIgBK+/dHShKOp3XMhkM9ioeTDJB2CTWpjZwuRAvbEXXO4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9PBDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdJhAAkPcJ1fr9TVB9Ba+TPNO8iMWklxg1T3EgtljiGxKh0+A7C4K0\r\npZe2+VtkxXG7lSVeLB9/ozfsn5Fypi3UUIQ48GNgKZCe3ZGuLFWda6L2aV6G\r\nWEF5n2iqKL77+nL7VM1E4CBOYyddXR9D3PBSMTzqO+G76uq3QXU5sPm15JAf\r\n2w5gggEJUam/5OPXI0T/KO4qhdwhhplJFWd/2Xd4u/0gzvrhei5B8lLDgqi+\r\nfLawllPJtIX0QV15QU3BdrvRk5hRqBbZw4SEkKXnoth9z5KT//f/hx4HN0pG\r\n8j1QOcezyNt0kn15UzQ9FyIxkuWVGMqnGtZZmhnBsdO+4lOJR1yPlfQNGg0i\r\nseDFetDlYyFW8bqPnjUqEndVVEF/bJvaHrSrXzTO8sAvfuYQneeoNC34oAZ8\r\nKpeJxNEuP4ZslccHz0vgit82p1AcL+z/zUucvcOJScOPHYvFqrqQh54hBK+H\r\n7/SWLopMS33Q12bdwZql7b5sH+jiDyPZv6un905eC77+zZa/U3A5vXKgtW8Q\r\nMiy8xqlkHjvRF24fHao+h7Zw3Oml3InK+d0HEjEjIzuetkCRHrkIP3f07VNb\r\nOCp6VF9BvdP6rkhFcF8c6AaK4zm8T8NHmpEi1uMVonOWRNNVnAwnSPDTt691\r\nE5hq/1IFkeN37e7TrxmkllqIRCo4FClRY14=\r\n=UpdI\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":"0a92bd0ef05c9a0a73b3983258c2c0191f2b59a3","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.4_1676996675135_0.683189354572254","host":"s3://npm-registry-packages"}},"13.3.2":{"name":"postcss-custom-properties","version":"13.3.2","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"88952f883003d897ade5c836e1e005b09a12f02b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.2.tgz","fileCount":17,"integrity":"sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA==","signatures":[{"sig":"MEUCIQDMsknL6BHo36L9oXnam2jE15XVFMbdHy82XJttttg3IQIgEVphjtBIst3DZJbIo2YPr6F9hq1V1B4L4jZC1OuXZhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40152},"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":"4cf09706d02a70d532a87343245c908a15d9f774","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.8.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.1","@csstools/css-parser-algorithms":"^2.3.2","@csstools/cascade-layer-name-parser":"^1.0.5"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*","@csstools/postcss-bundler":"^1.0.3"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.2_1695584722460_0.8087439210167933","host":"s3://npm-registry-packages"}},"8.0.5":{"name":"postcss-custom-properties","version":"8.0.5","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.5","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"e78a7bd813196332db9dface66a528ae5da8b98f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.5.tgz","fileCount":8,"integrity":"sha512-STfGL0W2qyMcvKCyBK6AtgJzSYSJDVZdcDjkW9TFwqNadedLQgGruDpxZh6A7TTKXozoyUycAzqWOp+Jn8yDqA==","signatures":[{"sig":"MEQCIAaiTf6MrxrqRw9kVYZ6kYO6P3gv9vVuqtKyTFzBTFyTAiAicnIZayHiIz9fHDVsOsQa/Lv+El8LGYsY9IyYBLMvxA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpRCpCRA9TVsSAnZWagAAJA4P/20PqK5DhnaK81K4qFH1\nN4qiTWlpmRhX1wxNIOWk5qYgV0e7OKyWHS0Tf3sc8QVzxm5Pql1gvp6oqRBg\ndA4jVKLgJ+JCJUT0hptiFmy6FQSlEal0DWq8A27hffi7q7R0FIHet8iGA+lh\n7EOUJGO401L2GCARDHOlncH6cffiofQaOnEubrNGTLq2vOooXK3XNvaDs2s6\nxcEx3URsTUqx5QJG9DayRTZzcfA8gWq5aVrjN7fEvVmeiRMizjWlMPu/N8k2\nNH4km9ky28/AS+SrkGzVlxKLrQomUto61dZEW5v0NNZX4S0sXCbEiyGLwERM\nZ+M1R/1Lrwzt4fv5AWt23btQTa+5GhXn13Ct32DRBCMkeN7b/0X+57zaQwh8\n2yLha9x1OQUME9JeTuF6l8KCkgwJ/aBgdmJkusV+N5YTwnHGKUS+LYXT/Hpq\nc9oZ1PaYe4zyv5jqM4PdMxjZyWTiYy2E2RkkcX3AeF1v4PbIrP0NU6XnDngg\nVpMtaFlMCd5hWLgpH+equ3/J1BkvHeKiy+EPWT2wRLh6/eH1ah8v/MQNlWuE\npYdTNbc85cegHPkxNnAORlScBEUrkUGqquusyXefTiNggohC/HCIXt/f8Dkh\nCJ4zcDOo6DJcWugtN729iW25FgOB37PjaWAmVddZ5WrfTXUVdIJ4t7i4kxS+\nG4wF\r\n=nlx1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"f6747b04cce22fda413d14213f376641eebb4d42","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries 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.2","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","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.5_1537544360921_0.6611082660212411","host":"s3://npm-registry-packages"}},"13.1.3":{"name":"postcss-custom-properties","version":"13.1.3","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"bee287086290cb03958c223576dc8fe81d0aa253","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.3.tgz","fileCount":15,"integrity":"sha512-15equAsfqtnr7jyzes6vyaGdAiNmKd+50FZ35/E/huBNBt7PgGMSNL/4o765nnNoP2dmaMJklb3FwJf3fdRcpA==","signatures":[{"sig":"MEUCIEdfKcllhM1Do9pl+YY4fuKzuv85wJX+MkbKrxri8qlgAiEA2uFHNcI0IdGWMdIve7Y/T6h4SoWfScHf2Kf2UE7tTZo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj417tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpwWA//ajXzTdHQjsztqQ5epmlIeVHkwEhE7QErhm13CQYLlC0MaLB/\r\n6PzdVn4GIruHSUiW539VPnJrykWdV+uXOQwlPZpabDEvTGaonczC7eQRf0/7\r\nlDND5UUsxqVWGbuaeVA04eCteMThqi5RPpLD0BREEYTEThz4KLegkiKjAJic\r\ntjAxViih2w2kVmaNr1h9PB/x8GtdRHD/kXozTbxB1uHDhHaLa1hIKl+N3ptL\r\nX4Qb8Vp/u57S8dmkBleM65htKsRlY4eY+5L2VGWx8CqKBEzPkVxI2Di31ito\r\nm+6Es9f5+F/DQHLA8sMawVSuy7CkO2hVvoG/qT4nlnGJcS/rx9DnHqQUXMja\r\ngLWn6bND5yfKLb58pOdrNaUHkxCUiKhlnkwLUsh39LNTQRiEWmsyXdNyqO3I\r\nUPF88MbvPAkfsV2oOWexWKRJe71bDH4U5sJA1hQJ2M/xPKkkBiUzBRorxfLT\r\n2qVmB7b4HHUL5qrU3MiuJYesKjP76u2xtk6Vwzqta0BfnazLT36gQJQKurZX\r\n6idZBMZgw9o3ftUpQ+bkon2So88AYAemmUs3isE4MMEyVEOL8XyS3nYMjA2I\r\n8pU5/MVmJGVhBjb3eQEuH3KCB0m8jpbx5efYAHLM8Nt97z+o4FqQB0NfxFVB\r\nqnNGoRCaNXSbxmv61KwiK8Ivy/i1NvZQGV0=\r\n=oxan\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":"bc6180f65578b628f7d38a3b2e7f3329203c2b96","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.3_1675845357381_0.24506225636068257","host":"s3://npm-registry-packages"}},"13.3.1":{"name":"postcss-custom-properties","version":"13.3.1","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d3058f0d773b8fdcb9a7b6d2b8dd1c28ff441b86","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.1.tgz","fileCount":17,"integrity":"sha512-TAWyOLz95GGMqDK3KJfi+IvY0MDCR72yBtJBAwxSw2iJ8WbBvIo42p7Luie1yRht3ctQlMBG+wDcFqSBtSpGWw==","signatures":[{"sig":"MEUCIQCkayvibCwS+j6Z6ZX7Ec07txEsSojN612dOMRSXAZi8wIgQSg4O4vIJofYEfQ8v4Y2aqS8HiZwg0SxCKd8iAav9Vw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39351},"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":"8883347e049a21352cc366129d40777aac444cee","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.8.0","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.0","@csstools/css-parser-algorithms":"^2.3.1","@csstools/cascade-layer-name-parser":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.1_1695053363069_0.03609719680113832","host":"s3://npm-registry-packages"}},"13.3.4":{"name":"postcss-custom-properties","version":"13.3.4","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0ad5be700b692e0288ce3b2b406eac964244f197","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.4.tgz","fileCount":7,"integrity":"sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA==","signatures":[{"sig":"MEUCIQCpVAEL+6zb8l6qMzDHV2oUQyPmclFi8rTXduMb31KtMgIgJ8f7LOKEDO0xuo9VJKcfCMGhS8ZA/XLkcbjEuHY5l6E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24814},"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":"636415899e92fd226e455e4b6563448fc95c3558","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.3","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.3","@csstools/css-parser-algorithms":"^2.5.0","@csstools/cascade-layer-name-parser":"^1.0.7"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.4_1704040379614_0.6212955843691985","host":"s3://npm-registry-packages"}},"13.1.5":{"name":"postcss-custom-properties","version":"13.1.5","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.1.5","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"75567e3b4a664f820bcc3ba8b6ae3c8d27db05d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.1.5.tgz","fileCount":15,"integrity":"sha512-98DXk81zTGqMVkGANysMHbGIg3voH383DYo3/+c+Abzay3nao+vM/f4Jgzsakk9S7BDsEw5DiW7sFy5G4W2wLA==","signatures":[{"sig":"MEUCIFPzY07dxuYXIanY80ugQm9bI6spGkoE9i2P9JyFxMBGAiEAq43Ml99XKbDtjRsbOkWo6k3z4jIUJwnQjZLyhWfxakY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkM+0uACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrgXQ//Yh/1tWfL4IJkTHnkokrjQUMu1Oa30YL248FN4PrMScKDn0o5\r\n2WAQ3ikwGnNTWyhRu2pOdgqH5TGHTtn5iU/+0pOUIUL8V341i4AmtwJEm61b\r\nEmNMfIXOia5DXR5TCZ3DKCEz0yZB1/kQFiXmteZEn3Q0eeXAU2r56wareTyb\r\nwTPtft7PqIM2wwkvH3PPedFuR3jvqAfWOEG8U7e49o9a3xIZrKgBHNFFKhfI\r\nHKaaQYnWarlMCov0fQoaSNfTling0ltgnTSLCNRXiGyPII6MpFEJXyINntrG\r\nrbDGz2QcWCwhFs0oudeu4FJ5IWnDRZbeYTbI9dhRPRGXUQGIPhYhXzFrC2yN\r\nhXEbktqpukr6nRpxyA5uS/3La1+NQhO7B4GHD4feHCr7fd/Abu0z2d0ht+8i\r\nlMH4xZmnLFB+Ge1sUI08jGYdWhnIslIc2ZTBUSWDkirJe7+FWdogNF285atd\r\nQ9+b8QuO5V2f0fTdGS73V8G6Inr9uo3tdGTtuzx/6iD1oWiBj6FQZ2Ifh9aB\r\nD9LGgnuX0K0xQ9UMh4h7bDZWn4qm2VcPwozGXCOLaRHvZiIGrLMMTd7+7vm7\r\n9udc2fuZG1p+M5mo1pGspfLMT0oPPw8khWWnSbeN1qa5rE3C+SXBcXnF4CyN\r\ntx8/tGHHhS+rWLLGFiMVps4zFyEfAxP7hIc=\r\n=BxL/\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":"445d91ba75deb79c281c2f7f2c7a889ab27a1c2b","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-properties","specUrl":"https://www.w3.org/TR/css-variables-1/","exportName":"postcssCustomProperties","humanReadableName":"PostCSS Custom Properties","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"9.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.1.1","@csstools/cascade-layer-name-parser":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"postcss-import":"^15.0.0","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.1.5_1681124654264_0.321889515760968","host":"s3://npm-registry-packages"}},"13.3.3":{"name":"postcss-custom-properties","version":"13.3.3","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c6be6c1746e0415f9e42a3055129aa20a19803e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.3.tgz","fileCount":7,"integrity":"sha512-xLmILb2R83aG4X++iVFg8TWadOlc45xiyFHRZD6Yhhu2igrTHXL6C75AEWqx6k9lxrr9sK5rcfUI9JvTCxBTvA==","signatures":[{"sig":"MEQCIGTMdKmVTvd5Kv8UfcErJt925DnSbd5S+fjnNanps65YAiBuluxbrZf1ylgR/3sr7WjgIu0DBJcGvrrsImFQiDXuUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23933},"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":"32e36ef308b756097930a36a08e19db1d25516f5","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.3","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.2","@csstools/css-parser-algorithms":"^2.4.0","@csstools/cascade-layer-name-parser":"^1.0.6"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.3_1702682659130_0.09404970135102131","host":"s3://npm-registry-packages"}},"8.0.8":{"name":"postcss-custom-properties","version":"8.0.8","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.8","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"1812e2553805e1affce93164dd1709ef6b69c53e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.8.tgz","fileCount":8,"integrity":"sha512-G3U8uSxj0B4jPJ1QBF5WYeW716n5HV/wcH2lOTV1V+EI+F0T0/ZOhl32MLLTMD79bN2mE77IOoclbCoLl4QtPA==","signatures":[{"sig":"MEYCIQC0dv0DUjvRP+byf3hE9BKwNKa4naaDsYmeVi8jZM0A7wIhAMRRYIEc6d82vQW6cnsi9L9rihIQnPMSgW+s+anEA0s5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs7YACRA9TVsSAnZWagAAwhIP/ja8y6PtvmltdiPd+qHw\nHXslqjrAgYhL4tyOiLE8BBs+AslOOmauzhkLf+D0yYs057tBzxlovq1p6zZb\n/EByO7l9z4Ari/OZzWpZPecf379KXOJKl7pc6RDgEbbBkmGBaZxojEd284AU\nWI5p0hdtMg2RK2VKOfQXTxyIZe9Msita5lpAXaxHc7XXjtGewpvrBdYCIm+q\nva+PFPWO+akVul/mAisu80xOO7t59yYprsT+JiRV3aTsBlHKx9cMDCyg7Pzz\nmcoNKW7LeNd6mk9N7R2mWxv1v/k30DYJzyrELeoBwGzS+Tr6h09lEf5VmJ/5\n0Zq8gptuv7zvfb0ulD7plgjCUW0eGw4iS0E187H5LtUFvfjFcC6nDfXE52IE\nwW3pTFyS7YjKRGgZOWIy9YJ/Nicx81IlIScOLwP1LA5kS71l3q4oDcoTzHd5\n/Kmg6L5RYa0XPIVJj3Cg23nOPHmaDeZW96tjZ3QOrBkcuqz+tlBQOt/sTkQ/\nIEhpeBc+9Q2Q25682zKg77NMLGjUILorAHnj/0X5U1VSB6afCg0P1IaRTLsY\nrPsg/vC97IMgZ3SsmLnak+upDAoi0SqJdbxs8+dtL6jpMGtgs8AfZREtZsp0\nmA9lFkzve/qJCnSQAZJ+/GVlGPriRJ0othB2u+4W01mKLClp3SflM7tsXMWn\nI836\r\n=BfEx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"db2e2a03e13c2e3aa9ee81ad986fc76977b73d50","scripts":{"test":"npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.5","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.1","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.2","babel-eslint":"^10.0.1","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.8_1538504191467_0.8469362577776676","host":"s3://npm-registry-packages"}},"13.3.6":{"name":"postcss-custom-properties","version":"13.3.6","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.6","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f18f3105ab33b8cb2e69da38192a415f6e4c0ea8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.6.tgz","fileCount":7,"integrity":"sha512-vVVIwQbJiIz+PBLMIWA6XMi53Zg66/f474KolA7x0Das6EwkATc/9ZvM6zZx2gs7ZhcgVHjmWBbHkK9FlCgLeA==","signatures":[{"sig":"MEQCIEv4wiSjvAe7QLkSBY9rJRlhXMK/xCcVsqe6pxzR+ZDeAiBmdMBpf+F9opke1HCUi/efIo8a/n8dklWvZJBD4aj/3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24255},"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":"3d0ace88a6361166bf4859e8bb6c4ef1044e60f8","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.4","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-parser-algorithms":"^2.6.1","@csstools/cascade-layer-name-parser":"^1.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.6_1710356250353_0.5541899897035159","host":"s3://npm-registry-packages"}},"8.0.9":{"name":"postcss-custom-properties","version":"8.0.9","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@8.0.9","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"8943870528a6eae4c8e8d285b6ccc9fd1f97e69c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-8.0.9.tgz","fileCount":8,"integrity":"sha512-/Lbn5GP2JkKhgUO2elMs4NnbUJcvHX4AaF5nuJDaNkd2chYW1KA5qtOGGgdkBEWcXtKSQfHXzT7C6grEVyb13w==","signatures":[{"sig":"MEQCICV5fkvkZzLAncNMXTKaNB25GLbkY9fBY5CwHu/DgDNsAiBf/L/JJ4zBEBd7dntiwuW5gt21zbk9jX6AMD83+Ai9vA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":107858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4Lm3CRA9TVsSAnZWagAAHMAP/3Rc2ECCZOcbGJy7rQWU\n6idbquhZKsGTgvUmvhMzYjKHSp+nJvKQHMhqEiC27aZEanyorTaEhSTvGcPA\nXtOd3VAVBISFFj10d7vHLOxaOrCx9vPz2j/JFs14lCRGcaMF/nMJM3+B7rEc\nGtOz9vPQZeLhJV+Xs497RgI2mdhWW5+81ZFacPXADQJvzYmMY7zD2T3JPeh2\ne4XOUN5zEryZJSecYlqEQP9RtmAEaswXtoE4k3aPr8Cq0slLyylD6PaesrZe\nGn3MC+7j8wFXPyAIcUYUELumky1+7yZ8QOtzDmNDpupwQwa3h2LtVEoOdFwx\nik+Pl0ObsDsG8laGg8SZDO6+B+5CVKqkQNu/E/FtPy2Xfl0yUY8l7bX3ejo3\nZkEuEQILaIkegcx5nWMaCf3TmLaMhp4peIAeyBglWN4pSASogcrueEHzXjvs\n8knGejfqRMD7FbKQugohN7o+LTzEsmhet5Z4v50yYVNFgxGjbD2fhEZPwjgD\nPSbXfRnRD9IKr/q0Hq4kxzs4YUTctUmWwG6XUO98MtiRUk2IsjFieHkAPtaA\nygHJgF8Ztio0aW2wT+Xun8/b+4LQ+sqYSOal9a6CNgkmrybO33m3m7LmQOAF\napPakz5O96fglu7SXnihW4ytrwcupYLCM0NW/S0NdfHYKhmaxszRFe+HS/GK\nv538\r\n=T0RA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=6.0.0"},"gitHead":"67e984287cdd6fb81f77f0a661c5050be3bb7d82","scripts":{"test":"npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.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/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"11.0.0","dependencies":{"postcss":"^7.0.5","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.8.0","rollup":"^0.67.0","pre-commit":"^1.2.2","@babel/core":"^7.1.2","babel-eslint":"^10.0.1","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_8.0.9_1541454262326_0.6712482427981301","host":"s3://npm-registry-packages"}},"13.3.5":{"name":"postcss-custom-properties","version":"13.3.5","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0083841407dbf93c833457ecffdf1a3d74a76d10","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.5.tgz","fileCount":7,"integrity":"sha512-xHg8DTCMfN2nrqs2CQTF+0m5jgnzKL5zrW5Y05KF6xBRO0uDPxiplBm/xcr1o49SLbyJXkMuaRJKhRzkrquKnQ==","signatures":[{"sig":"MEUCIQCcjnQxufPcSDiZ+XolV6p/J/tb8vea4U0/h6ModIDxcQIgKN6hALyLPjc7KtpJcYTVZem6K02P59LPdfDMhIIMR10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24363},"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":"7648da7ff1fa00e83bfc85c424ab591ef8b01751","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.3","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.3","@csstools/css-parser-algorithms":"^2.6.0","@csstools/cascade-layer-name-parser":"^1.0.8"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.5_1708330188613_0.4491208115223748","host":"s3://npm-registry-packages"}},"6.3.1":{"name":"postcss-custom-properties","version":"6.3.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.3.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5c52abde313d7ec9368c4abf67d27a656cba8b39","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.3.1.tgz","fileCount":5,"integrity":"sha512-zoiwn4sCiUFbr4KcgcNZLFkR6gVQom647L+z1p/KBVHZ1OYwT87apnS42atJtx6XlX2yI7N5fjXbFixShQO2QQ==","signatures":[{"sig":"MEUCIHXWn/GxMnUFBzcb/bjmItIJdWSIeLeVHgtM5lOBPNmNAiEAunVKObAldYuX0zuAfdMkP+rXYsqiDt+r2BELn+SDGLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22427},"main":"dist/index.js","files":["dist"],"gitHead":"281ef812a1d343d7b45e4dd91a06e7e405f40e9b","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"5.6.0","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"9.5.0","dependencies":{"postcss":"^6.0.18","balanced-match":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","eslint":"^4.17.0","npmpub":"^3.1.0","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_6.3.1_1518789479043_0.7758118915626637","host":"s3://npm-registry-packages"}},"13.3.8":{"name":"postcss-custom-properties","version":"13.3.8","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.8","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2a75e867fb7a6037e10282e313f9e87ae8881a10","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.8.tgz","fileCount":7,"integrity":"sha512-OP9yj4yXxYOiW2n2TRpnE7C0yePvBiZb72S22mZVNzZEObdTYFjNaX6oZO4R4E8Ie9RmC/Jxw8EKYSbLrC1EFA==","signatures":[{"sig":"MEUCIGZZbXlveXfZy1ZC5lli/0wBU1hJMxisl88urMdPH6YAAiEAhSZ30VeAA3J005PbJec3caw1btcu2+A0VTssgqUIjUE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26343},"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":"858583993f7a916384e513cef003e30f9e43524e","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.4","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-parser-algorithms":"^2.6.1","@csstools/cascade-layer-name-parser":"^1.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.8_1713801390583_0.6730265721089053","host":"s3://npm-registry-packages"}},"13.3.7":{"name":"postcss-custom-properties","version":"13.3.7","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.7","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"87f8ce173b147dc5e7e7d7f36123042b2572afd6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.7.tgz","fileCount":7,"integrity":"sha512-0N9F/GUCr/D0IazjzHahyYW2bQVDT6qDtEudiGHAhMd3XqhfM3VmfYVlkc/40DOhsPtngSNb54/Ctu8msvFOvQ==","signatures":[{"sig":"MEUCIQCOdFz2E7LIwPuwPkwTiLyWtmzSB7OHV9TANwlKl/mvngIgFs1yUF08HHdzzDghHA6HVhtEdkMha7NJj8J/OdnMjhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26598},"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":"fc90de8db6defc2006b5347600c3cfd2f6d66c8b","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.2.4","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.2.4","@csstools/css-parser-algorithms":"^2.6.1","@csstools/cascade-layer-name-parser":"^1.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.7_1712849395269_0.9495962066138512","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"postcss-custom-properties","version":"6.3.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.3.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"9b40b89c702bb95b748da70db6533fa4f8d5f72a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.3.0.tgz","fileCount":5,"integrity":"sha512-csHfpEjjXvUXCQbHdmo+t7TczoJwxUmL2Y0b2Sl3gA99LKgkF29N/CUMF5W30iQmLwiypEyWdLdzim5x05BZzA==","signatures":[{"sig":"MEUCIQCLgg8DU9fBXn+KxbpqX87NySXEixagf5r0hil3EiU7ZQIgX5Iz9mf/J5loWljoDCKtOB6fHdJwrLKm0CBxD1zaRXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22330},"main":"dist/index.js","files":["dist"],"gitHead":"52526c3836fc98ed92b76f818bcca554f9982422","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"5.6.0","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"9.5.0","dependencies":{"postcss":"^6.0.18","balanced-match":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","eslint":"^4.17.0","npmpub":"^3.1.0","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_6.3.0_1518750303022_0.08688684326282292","host":"s3://npm-registry-packages"}},"13.3.9":{"name":"postcss-custom-properties","version":"13.3.9","keywords":["css","csswg","custom","declarations","postcss","postcss-plugin","properties","specification","variables","vars","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@13.3.9","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5c10282172469771b2c8879c41b5d84440a16627","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-13.3.9.tgz","fileCount":7,"integrity":"sha512-vV0dFoJoNKwx8WtnIgP7/JAGca++Vl9i4H65gd1QODuA/3sq2QOkED1LVHUYO6KpfC5WdAnfXn0meWfgZ+GuNQ==","signatures":[{"sig":"MEUCIQDrnAHumSzbyWMwIDKaCgC98F1+82SDzPkm+B2/JoB7hgIgVLcbuKYjOgtA2K+/1RIgpI9xv1OWmTyS4ke8OmchHtg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26343},"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":"82a8557f3a44c20780d52a4ff7d61e1174f04174","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-properties"},"_npmVersion":"10.5.1","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/css-tokenizer":"^2.3.0","@csstools/css-parser-algorithms":"^2.6.2","@csstools/cascade-layer-name-parser":"^1.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_13.3.9_1714838882519_0.5366354615608693","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-custom-properties","version":"10.0.0","keywords":["postcss","css","postcss-plugin","custom","properties","declarations","variables","vars","w3c","csswg","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-properties@10.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"5cb31afc530f58ad241f1e836dd5f5f7065334df","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-10.0.0.tgz","fileCount":8,"integrity":"sha512-55BPj5FudpCiPZzBaO+MOeqmwMDa+nV9/0QBJBfhZjYg6D9hE+rW9lpMBLTJoF4OTXnS5Po4yM1nMlgkPbCxFg==","signatures":[{"sig":"MEQCIHd4u0zDnmcgt5qhqyokI4F3aCri9ByZes7TkWEYzgZRAiBdbArNsB3EV16l95DilTH22i/d0Mpsn5uF6JtsoVG8FA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZH8XCRA9TVsSAnZWagAA6EkP/RgNhno5M2n6gJZMRV3d\n1X21RcUMqrR1OadNraoVSiCdwCFkyt6VOnBVtod3AJIjjk/WjRC/PHxcOPhD\nnr3WCUh7AUNyxPnlQII4DkB7E6z1buz6vTAYTxIydLI3yMU0n511Ub7x5ay/\nKWdG2EeZueFgjN0zQLibC7q5AlFDqjMjbnB2LK1+Uu7DB8jLeZ2kHXgD31qV\njI8+E0nJ/xKHyZIX+xPtRUIed6XkrOKZHEaiE8G6YOBTZZalfSaolkq7nWLF\n7i6bjC9bepnyyh9tCX38P7CcD+9P5WmVFPl2H6GMIYELDQIzuPov2dXEu3F3\nOwWWZwtqaMUj2JR8fqyCiTeQV+QCWMDcSdvaqO8E15DHnqGZ9EO3sxncutkM\njklUbWUox9JY7o09jkqbzgC+jNY3IJyWBOk72m6R9B9ai3pgKRfKG72CypZG\n7ECzSvr+enlpDKsp30SupKUiClVaDH48Vj+iKTkh2XTknRtFMMkC8s9RoM+s\n9aGDk+HQiNWZhVsgGApUIAec+E1WsQyo3pxOEAJ3JOUCfceWs9ue8fH0E9Kr\nLmYsQN5VYuI8Pp6LxcWAQi89V1jduHWBadVwpUr6JnHJMKp75xgXnSIDvnmJ\n0uqzHuYc68/6PQRzbani4Lxh+HDrtCnrOt+pn07qbuT9DA+XSXLt0v1pYQCi\nmNSs\r\n=+iwV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.mjs","engines":{"node":">=10.0.0"},"gitHead":"8445f78024172ac24c3c522586689046fd80f934","scripts":{"test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","pretest:tape":"rollup -c .rollup.js --silent","prepublishOnly":"npm test"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"6.14.8","description":"Use Custom Properties Queries in CSS","directories":{},"_nodeVersion":"14.9.0","dependencies":{"postcss":"^7.0.17","postcss-values-parser":"^4.0.0"},"eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.0.1","rollup":"^1.17.0","pre-commit":"^1.2.2","@babel/core":"^7.5.4","babel-eslint":"^10.0.2","postcss-tape":"^5.0.0","@babel/preset-env":"^7.5.4","rollup-plugin-babel":"^4.3.3","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties_10.0.0_1600421655166_0.738023113387684","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"postcss-custom-properties","version":"6.1.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@6.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-properties#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"9caf1151ac41b1e9e64d3a2ff9ece996ca18977d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-6.1.0.tgz","integrity":"sha512-XlahbRe8mlvxMqQ3fZV3DIYfjPB8CMfZdu21IFdc6HWksVYlEU9F9gWzJS/2st/tLGuxuCgf1LvDQ6i5X96ntQ==","signatures":[{"sig":"MEQCICcROYAChZoJuubV7A9sW2e27IaQVbNjfds56IsiIMGAAiAh2tA++rTDSOeZBMsTv2Bn4Fczq47DsXD5Mn9E/HB/nw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist"],"_shasum":"9caf1151ac41b1e9e64d3a2ff9ece996ca18977d","gitHead":"bbf92943e9aa8578429e29adc369179665275616","scripts":{"lint":"eslint *.js index.js ./test/","tape":"tape -r babel-register test/*.js","test":"npm run lint && npm run babelify && npm run tape","release":"npmpub","babelify":"babel index.js --out-dir dist","prepublish":"npm run babelify"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"3.10.10","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"6.10.3","dependencies":{"postcss":"^6.0.3","balanced-match":"^1.0.0"},"devDependencies":{"tape":"^4.7.0","eslint":"^4.1.1","npmpub":"^3.1.0","babel-cli":"^6.24.1","babel-register":"^6.24.1","babel-preset-env":"^1.5.2","babel-plugin-add-module-exports":"^0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-properties-6.1.0.tgz_1498588658842_0.485923292580992","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-custom-properties","version":"1.0.0","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@1.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"422e910c078c69d489672860f537153bdce51165","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-1.0.0.tgz","integrity":"sha512-YJFP6R7+UYetiwtohdgzy9Semk4PxMjEmDlAaqPNzrNPlxJX70p+1S2+Jv8kpAqd+UoBDEmFUeO9SIxQxV8dVA==","signatures":[{"sig":"MEYCIQDbtmDd9JguS6kIYfdU5K7a/ADr8rqMI040NjUzwkBg6wIhALcmzfRtEvr1wAUFbfaXDw5RYg2EIIK75WZrCU9Hilds","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"422e910c078c69d489672860f537153bdce51165","gitHead":"f35b3efd9147b24c651df270964f4f5c0b9087ba","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^2.2.5"}},"1.0.1":{"name":"postcss-custom-properties","version":"1.0.1","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@1.0.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"1918d94202113dd2be99ce2208227a381df6ace6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-1.0.1.tgz","integrity":"sha512-Fiab3rfNLrTAuJLmyPFeI8pvGWCUIsFfV8vwa/4fZUC8bEGS1K4YMO0b+f6PNXMB/SVcWNjv9Rc8xzABwZQqNQ==","signatures":[{"sig":"MEQCIBiOWrza7Ndd83JHDDaX3mPnnu01ncNRuZ/sRawH3DK0AiBdjjuthCwqRX3cgNgjh2HoMlfrHCHNh0F98yHshTPNOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"1918d94202113dd2be99ce2208227a381df6ace6","gitHead":"3437f748940bf4efdf22c37eb04c130b20598716","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^2.2.5"}},"1.0.2":{"name":"postcss-custom-properties","version":"1.0.2","keywords":["css","postcss","postcss-plugin","custom-properties","variables","vars"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-properties@1.0.2","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-properties","bugs":{"url":"https://github.com/postcss/postcss-custom-properties/issues"},"dist":{"shasum":"cb353a9087c86511800cdc557961bd4ac2cc65a1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-properties/-/postcss-custom-properties-1.0.2.tgz","integrity":"sha512-eF2Sm+1MGBf42TbAMh9LDs8J2U0hKwJNkx/1y/lLeowiAbZFJLq5KUIqFDOkHHyeiUx1tCypP8hrvooFznXIzw==","signatures":[{"sig":"MEUCIQCmxhkSiTfkmUP8sEnCL/piZGztI2UcB4Ttom/ZDOF3awIgfIeH/T09D0nnAh+gCKPDZu5bS7Lx3a8ts9NfYhuF+qI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"cb353a9087c86511800cdc557961bd4ac2cc65a1","gitHead":"80119d39ede1b590b4c9ab347f791fee08d9d7bb","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-properties.git","type":"git"},"_npmVersion":"2.1.5","description":"PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables","directories":{},"_nodeVersion":"0.10.33","dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^2.2.5"}}},"name":"postcss-custom-properties","time":{"9.2.0":"2020-09-18T08:40:07.277Z","4.1.0":"2015-07-14T05:52:36.666Z","0.2.0":"2014-08-22T04:13:46.128Z","8.0.2":"2018-09-17T21:16:26.033Z","12.1.1":"2022-01-12T10:38:02.913Z","8.0.3":"2018-09-18T16:33:51.533Z","12.1.0":"2022-01-12T09:31:28.459Z","8.0.0":"2018-09-16T21:32:47.385Z","8.0.1":"2018-09-17T16:32:48.528Z","12.1.5":"2022-03-19T18:12:53.201Z","12.1.4":"2022-01-31T07:53:37.591Z","12.1.3":"2022-01-17T11:33:25.719Z","12.1.2":"2022-01-12T11:04:48.098Z","12.1.9":"2022-09-14T18:02:46.402Z","12.1.8":"2022-06-10T07:33:31.224Z","3.3.0":"2015-04-08T05:14:12.833Z","12.1.7":"2022-04-08T15:35:20.912Z","12.1.6":"2022-04-05T19:41:02.736Z","2.1.0":"2014-11-25T08:10:38.585Z","14.0.6":"2025-06-05T12:21:04.548Z","14.0.5":"2025-05-27T10:51:03.128Z","14.0.4":"2024-11-01T21:49:25.594Z","14.0.3":"2024-10-23T21:49:27.373Z","14.0.2":"2024-10-10T12:27:55.974Z","14.0.1":"2024-08-18T15:50:56.802Z","13.2.1":"2023-07-03T08:31:29.797Z","14.0.0":"2024-08-03T21:42:29.298Z","13.2.0":"2023-06-01T13:46:00.105Z","2.1.1":"2014-12-02T15:28:22.793Z","6.0.0":"2017-05-12T08:47:32.545Z","6.0.1":"2017-05-15T06:52:52.329Z","11.0.0":"2021-01-12T16:42:58.343Z","9.1.1":"2020-02-20T07:30:32.436Z","4.2.0":"2015-07-21T14:08:54.961Z","0.1.0":"2014-08-01T08:04:03.707Z","3.0.0":"2015-01-21T08:08:18.263Z","3.0.1":"2015-02-06T06:34:15.553Z","13.1.0":"2023-01-24T08:51:46.584Z","8.0.6":"2018-09-26T04:41:42.052Z","13.1.2":"2023-02-07T15:03:48.743Z","8.0.7":"2018-10-02T16:16:22.642Z","13.1.1":"2023-01-28T07:34:45.663Z","8.0.4":"2018-09-20T20:23:01.184Z","13.1.4":"2023-02-21T16:24:35.352Z","8.0.5":"2018-09-21T15:39:21.090Z","13.1.3":"2023-02-08T08:35:57.682Z","13.1.5":"2023-04-10T11:04:14.501Z","8.0.8":"2018-10-02T18:16:31.633Z","8.0.9":"2018-11-05T21:44:22.537Z","6.3.1":"2018-02-16T13:57:59.270Z","6.3.0":"2018-02-16T03:05:03.110Z","1.0.0":"2014-11-02T06:49:08.084Z","1.0.1":"2014-11-03T05:11:28.340Z","1.0.2":"2014-11-04T06:00:18.903Z","0.4.0":"2014-09-30T04:27:15.937Z","9.0.0":"2019-06-20T12:43:32.486Z","9.0.1":"2019-06-20T14:43:38.432Z","9.0.2":"2019-07-15T12:57:30.847Z","modified":"2026-04-27T00:33:17.608Z","3.1.0":"2015-03-16T12:57:28.679Z","created":"2014-08-01T08:04:03.707Z","7.0.0":"2018-02-16T14:49:29.720Z","13.0.0":"2022-11-14T09:49:33.048Z","12.1.11":"2022-12-01T09:55:23.303Z","12.1.10":"2022-10-20T16:42:47.677Z","13.3.12":"2024-07-06T09:38:15.443Z","6.2.0":"2017-10-06T17:40:58.789Z","15.0.1":"2026-02-21T15:05:50.990Z","15.0.0":"2026-01-14T07:34:05.538Z","5.0.0":"2015-08-25T04:47:57.669Z","5.0.1":"2016-04-22T19:58:03.690Z","8.0.11":"2019-06-20T12:16:58.248Z","5.0.2":"2017-02-01T06:36:05.100Z","8.0.10":"2019-04-02T19:05:15.527Z","13.3.10":"2024-05-04T21:15:18.147Z","13.3.11":"2024-06-29T21:59:39.639Z","0.3.1":"2014-08-27T06:47:55.907Z","4.0.0":"2015-06-17T07:19:55.673Z","0.3.0":"2014-08-26T06:06:41.340Z","12.0.2":"2022-01-02T15:43:28.193Z","12.0.1":"2021-12-16T09:56:43.787Z","12.0.0":"2021-09-17T17:24:14.026Z","12.0.4":"2022-01-07T16:46:27.986Z","12.0.3":"2022-01-07T16:40:53.919Z","3.2.0":"2015-03-31T08:09:39.425Z","2.0.0":"2014-11-12T14:42:42.612Z","13.3.0":"2023-07-24T16:28:07.400Z","13.3.2":"2023-09-24T19:45:22.649Z","13.3.1":"2023-09-18T16:09:23.242Z","13.3.4":"2023-12-31T16:32:59.799Z","13.3.3":"2023-12-15T23:24:19.378Z","13.3.6":"2024-03-13T18:57:30.495Z","13.3.5":"2024-02-19T08:09:48.785Z","13.3.8":"2024-04-22T15:56:30.745Z","13.3.7":"2024-04-11T15:29:55.441Z","13.3.9":"2024-05-04T16:08:02.679Z","10.0.0":"2020-09-18T09:34:15.371Z","6.1.0":"2017-06-27T18:37:39.861Z"},"contributors":[{"name":"Maxime Thirouin"}],"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties#readme"}