{"_id":"postcss-double-position-gradients","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use double-position gradients in CSS","readme":"# PostCSS Double Position Gradients [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[<img alt=\"NPM Version\" src=\"https://img.shields.io/npm/v/postcss-double-position-gradients.svg\" height=\"20\">][npm-url]\n[<img alt=\"Discord\" src=\"https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white\">][discord]\n<br><br>\n[<img alt=\"Baseline Status\" src=\"https://cssdb.org/images/badges-baseline/double-position-gradients.svg\" height=\"20\">][css-url]\n[<img alt=\"CSS Standard Status\" src=\"https://cssdb.org/images/badges/double-position-gradients.svg\" height=\"20\">][css-url]\n\n[PostCSS Double Position Gradients] lets you use double-position gradients in\nCSS, following the [CSS Image Values and Replaced Content] specification.\n\n```css\n.linear-gradient {\n  background-image: linear-gradient(90deg, black 25% 50%, blue 50% 75%);\n}\n\n.conic-gradient {\n  background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);\n}\n\n/* becomes */\n\n.linear-gradient {\n  background-image: linear-gradient(90deg, black 25%, black 50%, blue 50%, blue 75%);\n  background-image: linear-gradient(90deg, black 25% 50%, blue 50% 75%);\n}\n\n.conic-gradient {\n  background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);\n  background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);\n}\n```\n\n## Usage\n\nAdd [PostCSS Double Position Gradients] to your project:\n\n```bash\nnpm install postcss-double-position-gradients --save-dev\n```\n\nUse [PostCSS Double Position Gradients] to process your CSS:\n\n```js\nconst postcssDoublePositionGradients = require('postcss-double-position-gradients');\n\npostcssDoublePositionGradients.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssDoublePositionGradients = require('postcss-double-position-gradients');\n\npostcss([\n  postcssDoublePositionGradients(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[PostCSS Double Position Gradients] runs in all Node environments, with special instructions for:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- |\n\n## Options\n\n### preserve\n\nThe `preserve` option determines whether the original double-position gradients\nshould be preserved. By default, double-position gradients are preserved.\n\n```js\npostcssDoublePositionGradients({ preserve: false })\n```\n\n```css\n.linear-gradient {\n  background-image: linear-gradient(90deg, black 25% 50%, blue 50% 75%);\n}\n\n.conic-gradient {\n  background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);\n}\n\n/* becomes */\n\n.linear-gradient {\n  background-image: linear-gradient(90deg, black 25%, black 50%, blue 50%, blue 75%);\n}\n\n.conic-gradient {\n  background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);\n}\n```\n\n### enableProgressiveCustomProperties\n\nThe `enableProgressiveCustomProperties` option determines whether the original notation\nis wrapped with `@supports` when used in Custom Properties. By default, it is enabled.\n\n> [!NOTE]\n> We only recommend disabling this when you set `preserve` to `false` or if you bring your own fix for Custom Properties.  \n> See what the plugin does in its [README](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties#readme).\n\n```js\npostcssDoublePositionGradients({ enableProgressiveCustomProperties: false })\n```\n\n```css\n:root {\n\t--a-gradient: linear-gradient(90deg, black 25% 50%, blue 50% 75%);\n}\n\n/* becomes */\n\n:root {\n\t--a-gradient: linear-gradient(90deg, black 25%, black 50%, blue 50%, blue 75%); /* will never be used, not even in older browser */\n\t--a-gradient: linear-gradient(90deg, black 25% 50%, blue 50% 75%);\n}\n```\n\n[css-url]: https://cssdb.org/#double-position-gradients\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-double-position-gradients\n\n[CSS Image Values and Replaced Content]: https://www.w3.org/TR/css-images-4/#color-stop-syntax\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Double Position Gradients]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients\n","repository":{"type":"git","directory":"plugins/postcss-double-position-gradients","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"5.0.7":{"name":"postcss-double-position-gradients","version":"5.0.7","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.7","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1a4841daf7ac04e94de4672282e8d02d1b3dd274","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.7.tgz","fileCount":7,"integrity":"sha512-1xEhjV9u1s4l3iP5lRt1zvMjI/ya8492o9l/ivcxHhkO3nOz16moC4JpMxDUGrOs4R3hX+KWT7gKoV842cwRgg==","signatures":[{"sig":"MEUCIF8zh2rqAEBV11LqHuUhPPP2Sy4jHKtZ7TscPdNfknfIAiEAnbRsSJglnp4sR/Z84b3IEBcA3u9u8Dxbk8q26IGUWQY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12192},"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":"ec42ca646afb893fa276bcaaac76f144abc1712a","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.7.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.3.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.7_1720359788007_0.8534122845544851","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-double-position-gradients","version":"4.0.2","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@4.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"855a23201f26be447210504e9b668429cbf4640c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.2.tgz","fileCount":10,"integrity":"sha512-GXL1RmFREDK4Q9aYvI2RhVrA6a6qqSMQQ5ke8gSH1xgV6exsqbcJpIumC7AOgooH6/WIG3/K/T8xxAiVHy/tJg==","signatures":[{"sig":"MEQCIBxKKAwtFxO6O06kZLZh/NfpYgpkGyEkZEIdB6ReEuolAiAS4v4ngxG5PxVUk7Gqw3/RRNZbKWn8jvm7UJJbbiZ6GA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj418EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq1hA/+P3ymHRR28Y+/r+++In7rI8xdReIA8rJSKLIQMMh5T9guDJlQ\r\nnQkNd4OtrYOGPLNEdK+xchljt0//dQf3z+kLeXFAwXr6uew+4M7Eaha+BJaM\r\nNDBe7pPg/GQThqbCUrumdyP38/bemOjrCeWt5yjWUHtPMWm8feV3dHYPLFhf\r\nuhjBVQmxa7+OXkINKbQS/F3Ua19QxeK/YGJP5+nnUzQLUzwkbbuB+OO3RbHf\r\niYxWrqWFmPoLiHIUqg2wmA3tphjdm5oZmuCosjweSFmfXDctc1LA1j0nUP3G\r\nk8Q445m4XBSWNriDnVeKWDjrEjhcrGm+PVPLFDHsU6iiRzvzm89uvDCKZKml\r\njihDLaRdMzv6ervsWfzI6t7MkZ7irvZgXn0R0dx93u1PIxCStuseBvWUWoEj\r\nkfa3saH9MgbepRQi8H0yi8YzNhqq4PsAUWOqY10GnQy/hgRqILalHUDuB2xQ\r\nmsRraIseQ93GwTOc0rr65S0H+CotpAv30Ep5/jf5C9XL8N04doAiitXB7Fvk\r\nehZoF2yqUVv/GT/t/27UnVHecvhgDDRAKt59sAGGFlobKWpLDttkOL9ep7A0\r\nXn+CqQQ6oZd5QeDs9Bw8FrCzybQrPu+3sga/FJPk0o7YjpDBcS2j5+1qvZ1x\r\nJIhu+zkI84OMMl9+Du2IS08Dj7eE3oDPz4M=\r\n=rMVd\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":"9b9da800e62059820311258c9d88f42eae4dbd73","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.4.1","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_4.0.2_1675845380109_0.5818783711552704","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"postcss-double-position-gradients","version":"4.0.3","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@4.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9f6e0e17a5b98c3aae1174b8256fc2e2d0220dbf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.3.tgz","fileCount":10,"integrity":"sha512-Td1+C+kFCadnhRBMMf6D/eiQxjp33eAgwgMcLNYzZPcgXt1iU6vi/qEJ/YObp4nwn3QOtudFBMUOVHoGqmpfiA==","signatures":[{"sig":"MEYCIQCdDSBaku7bMFdf/iCfsjuVwZ1qVml6TlM/HHiWhLXqywIhAL/J+bRM/wvnfiHIsbTPk2vhk7//7r6/2MXszXsnlFiA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21233},"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":"d25b8c00f92eac0974e86d445a75591a2baf1d16","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.5.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_4.0.3_1684511503036_0.9782482156561985","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-double-position-gradients","version":"4.0.0","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@4.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"cd24802e9e2b029fd9865a610ca9f9c91d096b54","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.0.tgz","fileCount":9,"integrity":"sha512-RTOs3chf/D1ETvaT+BcdGkPmRxoImZn3hmfAkFGET5ijx3Lnw7npubQDvwqOL1on54/uN6w9BGuEMSUsOK+2kA==","signatures":[{"sig":"MEYCIQD6yTeSC1Nyga72I6+JqGhtEmVbKNB2NQM1K/lJp7/+7QIhAMnkTfEby0yhMFEqmtq+p1VSzzZRSLqqVhGKL6BbS2wt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz52EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpO8g/7BvBTZtWUqGTgNDNGq1Ea0YJsONXbd6Dw8OtSHwvdq9XcLWlz\r\nChkJlZDhd/GOkxXLwtYBDlvWOCOb/+vt47fxktk685+QJ6ak3bItCqVxvSYg\r\nHyRffxEshbv3rEvReY+byVHI7vDYTf071biuQpGcOxUOlVk7NFPsnvmXu1Xn\r\ns6oLLz41fTwn+pxmnybkWoWkihpZlpkPG5eGFsuLlPKNKo843RbcWBTHAS9z\r\nx9wZS/0oaRZUB0Tci0eNhfT7/+3rQKMAL+eYN1uROrtArLL51rBCkBc6vUNt\r\nkujBsO8mU0/4RsPQX5Cf4p2h7MxI+ZozzX+tXBcWMSVz15fZocsiv9OKvQVt\r\naBsqepN/6Bln7hdnmR1M6xxSc1k8XUeIUZTHOcOj3pjhoO3Q3gKRp3a0yr6Z\r\nE/mwp+P8JgZofk0tG8p0Eb71ngiAoZxyLXGa6tcjyQFL4KXSorhnN+Jl9uJH\r\nGYJuTmSnitOeOdPw7Z7w8ruja53VsRBW2nyUPfJpf7JIGV7JSvHqN2UR3yez\r\nEy3MbXzmdjzUtnxITivXxbXozZaWZu9ub0pcvn2rRzpEpUkr47u7zmfr9qgz\r\nG0EXl3enhh86ffalwseag4dRnCrtY09rRuPK7BhRWpPaYTHosLMVTwNk3w61\r\n0GHV3uIyqDSwrVMXg1TrGDyL2Q9DjyUVEJg=\r\n=ZQi+\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":"84a81a27993d5209c93df7e678599ec29a6ca23c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_4.0.0_1674550660298_0.7945705725264438","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-double-position-gradients","version":"4.0.1","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@4.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"96d7539d0f471801d6cd7f67bd2112df49b69db8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.1.tgz","fileCount":9,"integrity":"sha512-XE+eKvX96E9cmldwKeRmK8AMxfQfuuHN9Yjerymau5i+fgC/vEY+B+Ke2vnEv4E8EXu8MKdLxi4DzmodusW19Q==","signatures":[{"sig":"MEUCIQDuWC9N61k2qFA6y91If3k6cYt9c+i7RMRNDByQSDZ9sgIgVr3udF/I2Np5vSCigC7tIU5ew3HTkj4XWSXw0Q0uBUY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NCgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLAxAAo6Gf0/TFEb7K8+bzHcu3UlU8cA+c8KRLdtyneZTHZMyOi5pR\r\nr1JCifIXhcgkZ6Vw+aA/sPColC0L8svwyHUJOjLd9cXAcIDG5kqTjSg/BySY\r\n4ZZUObiWfkPy86AZ4f0NSIDCE0Ddap23WZF5mL/eBzd7Tj8z5mT51HcrKamR\r\naCFl1Smjhn5ukxIOhACVRA9q889OyTvfiXdEZ55Oi1Y0kkPcv8cS4G4qIaUN\r\ntMZsj72jCWre7xz1AhW+jvCD+k68jihM3SoGYcnwQqzeQuFT0awjVMGGNc6k\r\nwmqnhzMOkXalSOxx9iCADhbRhPP3hrrKX6/7NuTkwBNaUM2MYmh68pXd4jrJ\r\nz+YI8rCrSCxyKx4lw/5iIu9uTM+hi/6BY0PmLZsta+wojC2rd1bamkTsM+9o\r\n2gC1Mm/uV6eRGOigWKAHyF7EGZwAbV2hPZ93/OVuL7p5fY/5D107+Mhe5j1v\r\nFKMmJ4arNhm8KJEkByfx+uj6LvMqSqVjrVPSDJQZAl87TDQSrYyh9Tf1P85X\r\nIWCMgwq/G/HLcA7/JH0o9PftOkvm3an1aEYjkbZqXitsoj+Fvod5uW+jCLUb\r\nawzua0JJmyeK0GT6pa/7vXnpMyD7dP/4Rrlkg7Q+aKRdlK0X9Fqm2569LrbI\r\n60UoSQcx84zmc7WM20qeqoiWDRr9ci013hs=\r\n=RI+8\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":"3cb217921ba4ef212b991ded92aba26b7f603d0c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.18.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_4.0.1_1674891424589_0.38297630782516956","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"postcss-double-position-gradients","version":"4.0.4","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@4.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"57850aceb94a05778e7fdf31767a5b2a78f2be62","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-4.0.4.tgz","fileCount":10,"integrity":"sha512-nUAbUXURemLXIrl4Xoia2tiu5z/n8sY+BVDZApoeT9BlpByyrp02P/lFCRrRvZ/zrGRE+MOGLhk8o7VcMCtPtQ==","signatures":[{"sig":"MEUCIQDoKPwz+Zux+dchd+RrOEJ1wThwS5ZlJP1hguS6Pgg34gIgFBUz9Ae9J7XhKI+ppdBioVKkrGcS0MoQI2lPhd6AgNI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21340},"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":"ba31e4572ea8753a6d70e037b840f2b6f747a509","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.5.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_4.0.4_1685627218295_0.5737803103514827","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-double-position-gradients","version":"3.0.0","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-double-position-gradients/issues"},"dist":{"shasum":"039275fa67deb0fefb47faea38a5a9088bd282ca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.0.tgz","fileCount":15,"integrity":"sha512-8byuNWoAGyO/ZGbPPaYrEoTt9Xf6RNH2fNFEh4tcnTMKjzzCZDxgMrsaMiqyZEPVCVGJTJrRCC3IhRxsKgIO0w==","signatures":[{"sig":"MEYCIQCfgstDvYqfYo55DysDL3uC4JJ/DfOojXI1cZm+ooHdDgIhAKPJ85e/0j2FuGUyFKHQjjIJABWVEmIgqTrQogfSuB1s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22759},"main":"index.js","engines":{"node":">=12"},"gitHead":"bd72b47fcc6eb0a877ef56f36c121ad50ddf10cd","scripts":{"lint":"eslint *.js --cache","tape":"postcss-tape","test":"npm run lint && npm run tape","lint:fix":"eslint *.js --cache --fix","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-double-position-gradients.git","type":"git"},"_npmVersion":"7.20.3","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-values-parser":"6.0.0"},"eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","postcss":"8.3.6","postcss-tape":"6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.0.0_1631885755330_0.4357090538055717","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"postcss-double-position-gradients","version":"3.0.5","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.5","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f6b755e9850bb9816dfbf8fa346d9ce2e8a03848","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.5.tgz","fileCount":6,"integrity":"sha512-XiZzvdxLOWZwtt/1GgHJYGoD9scog/DD/yI5dcvPrXNdNDEv7T53/6tL7ikl+EM3jcerII5/XIQzd1UHOdTi2w==","signatures":[{"sig":"MEYCIQDDGv7zwtU4lZyyvPcHr66FnNitCcYeZCDjJMdUZwpPeQIhALaQ6IRrfUmGmbbc2YzwcT4JjBuOiy+FPfbehYvOEO+Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/q3iCRA9TVsSAnZWagAAmwAP/i6Kh58BqRhBVzWAADwp\n/p5hR70onfMT5ER2zhvOC7ZQsAgRB4qFmkQL8yANOQBwUuaLruduyVm0DEx3\n7K+YXo89z93ojl1AwuMCbpZGrp+zsniXkdBrSyymIe2gC8uGMN3a0RsJ/IJQ\nWM8EAHoXJ4fldbaxP9YlE7hRNt+VgfC4wBapuqmN+gMGJ7+BhtVkOhU2E5IZ\nGtuWsiuaUympDimcLw120qUGVo/Yn4ZDEb6b9p2tWIWvWP4DBt5keDuiNH0m\nkjyqwi7mNNaqLlEG6msHVjmkCNYq55etRMhWS3A62g8MFEGrwkLpJAnsz62w\nmpWHvlGMdVIkZz6zVVG0DyrrGT8y8OkV+xfn8Z23YsLACOD0VtLcvWIoHZo6\n/vSt6fqthrdRe7l8mqtxMVhp5Y8mmwvrhMaa2ZAe2xWjD7be2wnvOLUOaUji\n3NWuJiPZy6pS9QzNKnj3YXUYzsM2AnbbZPQ2TnUOk5n49AnKW+KRl/Z1ERnP\nDED+EjQR7ozRxjcrP5H1nxl+WghrVWJPctnVYbWzm+gMMbC+Je82zRGet9kM\n8M7zAxAs4aH77StybgoHG5yckNuSomK7s0scmLZiJ3o+dBnT6SqIZ3DVZ5FH\nDBOR14Rra+03LC3xt3qsk0BU5snxAteIRdEDWvRiE+JSkM35m2SkGoiZIS/o\nnd+z\r\n=gnRT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"932555cbfe9b0858b7cba9af99f05cd730e1306e","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-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.0.5_1644080610374_0.7278623420970252","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-double-position-gradients","version":"3.0.1","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-double-position-gradients/issues"},"dist":{"shasum":"3c21ad52b6f13d81caf2563b0010a2c5872272af","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.1.tgz","fileCount":15,"integrity":"sha512-L18N4Y1gpKQPEnZ6JOxO3H5gswZzTNR+ZqruZG7cOtOF/GR6J1YBRKn5hdTn3Vs4Y9XuDqaBD8vIXFIEft9Jqw==","signatures":[{"sig":"MEQCIAnFUx6yluXbVoQ2JWFjUO8f+8rIuwtd7Hd+x0oKUXa8AiBiDkekRHXSt6ss9fgGu+mmSOGJZoMnbanHO0/0nMZj+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhloHNCRA9TVsSAnZWagAAlr4P/isuwd3JlF0pPnWpdh5u\njO9hlmZdPbZUIJhczQEaiXkaJKrQjNRIKesyNesotuTQSEbc+ZO70K8m2EL6\n5PBTF4BB0tU7rNvsUsYVINYx/J1qdrNbl3CcqmK+GbV9jrZJkhzQn5WzKZOi\nTyQvWYowgkgUCivV7Zu1XQyb+uNt2+S9+bdE0yhpS1xFN3BSWobF2E3sb5C7\n1qQ4zb2CBePKZH3Q12HNyd6wfCzQMr+V5+ltfUkVdeDnZlT1YmO38XPx4jGi\n5GY5Dv55g+ODuozXFQpbzVoOB9RZiyirhuE4QCGVZz3SHoGeWMlYXZMVGSFb\nHIFnynyJnT8c7X1/Zh3GlyrhT6wcForQ34eFZAZaxKKGb3qM3UtLRXRW1NMa\nufKlD0tmboxV4UK7FXMZhcpdBDaIWDp5niTHhXoGIVK7/5WKb8FMWdGHqDuw\n0AI45FMGvjIEFbQc3T7Xf3ZQP/suU0/lzR4D4FdTFTFT0OK+gSfsDHaPnUxi\n/qAng/3JOD56uroA6VGY6zS4LX8x9FLpVYJIUO5V1MSwnkh/vuXgDFOypSm5\nKECUivW/jeDwN3AYRl5n2QmIpFI1zbeEJUE6hHGmHfqRHK8kWNZAGn26WMtG\nkaJYM3aG0h7Z8FxVZ+VJLmdHH/iq9N507U/uYIEFo+mD4PZg67Ia9Ns+5zWu\nOwVk\r\n=zdS1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"6615b8d31e66041854109e0d1449991e73286d15","scripts":{"lint":"eslint *.js --cache","tape":"postcss-tape","test":"npm run lint && npm run tape","lint:fix":"eslint *.js --cache --fix","prepublishOnly":"npm test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-double-position-gradients.git","type":"git"},"_npmVersion":"7.24.1","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"14.17.6","dependencies":{"postcss-values-parser":"6.0.1"},"eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.2.0","postcss":"8.3.11","postcss-tape":"6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.0.1_1637253581617_0.41078613947644715","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"postcss-double-position-gradients","version":"3.1.0","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a8614fb3a2a4b8877bffb8961b770e00322bbad1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.0.tgz","fileCount":6,"integrity":"sha512-oz73I08yMN3oxjj0s8mED1rG+uOYoK3H8N9RjQofyg52KBRNmePJKg3fVwTpL2U5ZFbCzXoZBsUD/CvZdlqE4Q==","signatures":[{"sig":"MEUCIQDKej/PN++vHEUYi8Z1JiAZsyiMqEg4Np092qZr/SsCzAIgSigt2rVOWB3eHYrPd9uOsI/Q8AyLqPFFwIHJxLFFJ04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC/luCRA9TVsSAnZWagAAt1gQAJtEkGFaTpolMZqtizsQ\nmxdBjjzMibCb7XtzJeofh8/s2VYhTVubS/VMKBhXa8n7+NjsZ6ZMM1KNovES\nQkbc4MktdB2uhQa6Qj01gB9EMvVg0GUnF8ho1mH2C7x2yKbeXpUvUNc1TTH2\nwEhHT6yleSR0XcfDnZAQB5cw0ztnLVz3NXn5O0K0ptc8aj7bxramby3iH5mD\nlLounzo11xLGE576+dQGsvVmOH6TkAiW7jC8dA95imzFxHsJ+djwI7GTgXIN\nrQSd2M1RT/Yl+pP3Xu+Am1OcBAW15CbEXavyd1k/Wd849pG4QibtE4KcXFua\npm4OuUhJrEhsXikDokcWmZDvQQ5k/Of1eO+3CeTdpRf9b6f7FqVwXa8FcS4K\ndYgiFJ7zHbBQsYphqsVvwXKsrfzB38cziKKm7MhSqmDhBnoFGTUNct3p7fTr\nEIBp2SrL2N9HBqAtAILj1g5ZcQlu6X/yirS5bN1BFeGmZohd+X3lsN62R/bw\nP1cy4fzidgh8DtsP2HJ0ylWllDasYE1kwJNmsI5RgWl931t/op0sSiHKbGp2\niW36Ciqwn6WOP6269x7upaBt0ApTd4NL8aW4Q25ff1G3tfms+cS3at+dqq4n\n6jq3t/Jb3m3E1Cuo4Ul5PDTL6xrWmW06Gjv24dEXTOHYZkOrhraI39N5Qq3e\ndMdF\r\n=7ciX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"8061149271ea3e690a48b94351bbb9f424298e47","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^1.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.1.0_1644951917987_0.08522574176893483","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"postcss-double-position-gradients","version":"3.0.2","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-double-position-gradients":"dist/cli.mjs"},"dist":{"shasum":"3f0c800209f34db011cea6f5f7708afbaa7e5fb4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.2.tgz","fileCount":10,"integrity":"sha512-4d9k4FCQ9WqpcwFRyIidNy/AHUp2B/L4RTTWK6kvrzPQYUFq63psTW+O9CXKuoYP4wg5OPZ97HuYyQvHiOWuhQ==","signatures":[{"sig":"MEQCIBoArKYCdG5kJrFzOoNvai8u7VfuqV9N5JcutDjmSbGgAiBYDMax7TGsOKgV1Z/SSaM/zttHyxvN4tvrNeWJ9F4Nlg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxJvCRA9TVsSAnZWagAAF6AP/RseVTUreTd8UKv3pV5N\nLz11jCsMfSb2xoo8IzItKcHKZbR6fL/W0+EazCBtjNY0cm6cxEwmBDn/jBF6\nAnPVLtjCsyGLUYdLhc6RcU+vRCD6L74QJrFBkKwkYIl9L4Amd1IpksWCMC0V\nO72jwtAW8qysSywYlzBPTBB/DYKc0y9VBEAuOfMDgh4ANbgbX8+/4YrvbL6E\n16XKD8f9t6HLb9TXbTq0sMMH3JeEQVeAxgT0O2NJkt36ASLQprCoK6QMHxPO\nCGOMRl/wvnOFO1iUnAq8rdZ6OA5jaY7lO2Dtk55kqkslf9Iiz25d4uIQaaoO\nJZ1UUSVL6Yc5uyCxOhXNYKE1rOnifMEgoQdAa7ekWRxqNd+A26FkW+fz7cDm\nSOrQ2CCDPLe+zCtgRPvIrT7BaeKFaICu6bKbnXqN54YrQRhIoVsvkxzlJnEE\nSIKQuwt9qHRlp9N+16WCndKxLJep/aGiiq4da1hGJeTdFjrkOzSeRsCRQM5s\nr4cldt0J3lKMgQLGFuN+fKONHecYmR71BN7A61i+trwdExFTuA9UtFIByyuO\nQC9V60FcBN4depr9i1fRjA78SMbXmyQ6KvvvW+eWDx2/1dxtI/f8Us3oYL5p\nCbqAO32gj/Ix1s/NDDPPqs4+moWmgDhRGxHijNUhn8G/FqkzhHlB5RtW8Wyn\nIKhM\r\n=VR+Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"0571fbad0eb2f8f0dd06c0ea61e3f2b8920a458a","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-double-position-gradients"},"_npmVersion":"8.1.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.0.2_1639387759253_0.6605067388442478","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"postcss-double-position-gradients","version":"3.1.1","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.1.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a12cfdb7d11fa1a99ccecc747f0c19718fb37152","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.1.tgz","fileCount":9,"integrity":"sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==","signatures":[{"sig":"MEUCIFq9wYI9syXdNoTlR1Pt1NfpxTZ7Jo2Itz0W/y7oV/X1AiEA9XFyD//RFOdbQ6XZtb90ZRJuCLCjSQKlzUvEGfdDNmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJebaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmruig//e9dIOHiwwbAAUXEaXQqvhzPVNfMd8GzqR2W475CYxALj4zhE\r\nb6SzvAW7XW0sl0il7oDre4hG+RbPEYMJpPG9iobrtDnKTaRdxVR2ml4BXmZK\r\npjJ3QAMdIP5WIcoshA34vKybkBOCiUEg1wN5F+8BuhvOaloWOKOuMzfid+Bx\r\nCQ4K2DJKU/q3wWASp4ebWsshwx7bMd/b0nF9sC6PodN5+m/TMLTphuSSFerQ\r\nsZ3OSSVZq7Bc+T9jjKjCuf0CoGBrJKUlDgOEADKNDT3wcFoQFucb6E36JGUk\r\nT5EXBPmCh9mD8E6yuBtaeDAWWe+a0p2wWy3d0CUS/ln41+ezaMh3KwgsAcHp\r\nvga561pBcggjL+td4sykSnozgP101w3759UpHuny63dhOQUQ+GBkpOsSGUqE\r\nuvNRbFXEwX/ZMl++E1ZD1gDlQkcsyoltSuhFCLY5+G+fI36ujp6paBFW5Osq\r\n8lfs42GjRGvZ3/U24klsO4IoNkvIgWo1ql1E/HlyvF5EObiMdsD1S3HJ9cWM\r\nvJVAGZqYVcvOIIR35jrt50Zn2i/i99JTX0o2vWKjd9B2FA12iDkZvp5C0zPp\r\nFMZP5RJmb9EOYARSewZImpubPNLZwI9tyPIX/l1kPnJfO2zGhD2A+7j4w3Ch\r\nZYtrVfXwObq7TY8Xo7HHFXFOeN7k0t/b86s=\r\n=uT5z\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":"6e21e5d01da0687979c9f66cc9f7f68cb3332c2d","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^1.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.1.1_1646651098593_0.6381983711299082","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"postcss-double-position-gradients","version":"3.0.3","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-double-position-gradients":"dist/cli.mjs"},"dist":{"shasum":"4c528dacfe3b7a52ea99665866912072184322b0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.3.tgz","fileCount":10,"integrity":"sha512-x3DYDhCsKS/sjH6t+sM9R+pq4lCwdHGVeUOpE/gDybfY33acJJie+NzRigKJVze7E/jH/1WGl/qPRV90Lso7Mg==","signatures":[{"sig":"MEUCIGJi3GjXNZ6W7Bkmd+3n0yJTpWcD+SgYBXC6c4QZUwhRAiEA8EDUTDERWw0+FFoEIbvFDoiorYmEGDFLtQgDa5R3KDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuDe/CRA9TVsSAnZWagAAQGoP/2f+HDK1zSBmfwAQZHyy\nhENnC7owSTTQ3xn9Yp+zQ0ra1kd64NLm+wMUEog6uI/FyT2DaYGQalbW8UO7\n+bj+oHVyeJCFDDYDpv8vTXev1OTXZyqsjSgOuJoxShjRI/ImNPyHUJGdNLw3\nu/YJuhnXdMNcM5ZFQ5KPQApwmxSraZB34a1zmLFgKZ20H0fFtU5o8PAumwKI\nvKIh5jEyMKDZXlmvHohOwDFCqv3qHxFlpUYT7ZZrO7m1uCXkD5P8fNV/D47q\nLiAdbWF42CQU9Hfw9eTtEHjd6nH+rVx8qb8tGZ255puQFzMlCJeu2A8C3TUb\nMdDO9633jE5F0HGZrqUYmwAuKBNrN5BRrel/sGYUznc4prlSPmIfmahpIBqt\nPd2XMP+gSQBXdcWjxEAqRJOEDj6A20xRGViiC7tdT45kVtF+u4OP8oN0U9SW\nOvUNaPHifTMhnNVX81YB3049nYTv02pfNOx/uLMLqmv8MEeopyLG3QYUPBni\nyhl7b+dr+CIGU6iE4H5QWBAPVmD56cDCkMPJXXeZLNnX+ScHEnN7iKsb51mA\nNovdnOTTDmsE6cHOo2EaZHZV0ccqODmV0pq7Bofmsq8XJbXO8WqCWSJ6vXoF\n33BbsWpMUTo226pBfzvWCdKfEkYkENbkNhw+0JPnRvl+yhC9mrLQiskInP//\n3L80\r\n=FnNd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"c7697b2c0d2b04ee20bc60d41bd0c68d889c0c55","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-double-position-gradients"},"_npmVersion":"8.1.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.0.3_1639462847576_0.36248711676390744","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"postcss-double-position-gradients","version":"3.1.2","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.1.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b96318fdb477be95997e86edd29c6e3557a49b91","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz","fileCount":9,"integrity":"sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==","signatures":[{"sig":"MEUCIFMT0ZKtF+gWOHL6GwWLVuRae8+/3R65F+OMT5kC2aNwAiEA0Wn5CI9Rt3xeJW17E7iMAInmOW2yfrCLc3T2583mOBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFkNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYkRAAgJTXZxOd9MswHB8g8HhCVf8zMy5DgphhH+qR0ySY2we5PxZG\r\nupzH38DChGN3U12ocpscObFBfzhIYxyJGpe2Whi2Nuna88Q8GdGFWkthAo9v\r\nfHv7y+ut8dSHmB994itJkz0HR1OG75e6gyABlp6HZzpCx4w5Qtxpm9G6/RIJ\r\nDM1yOw58gzZxy6VZO831JvHiONo4s+6UvtNS8aeyEESbuyGDEp0WYQroSpkP\r\nytwEmG6ZGoCiJfOYpaNfzuLV9Fa4V3hPV+nGILrqna/hbU5qkCmZwpRkn3r2\r\nnv5WLg/Ubppm2f7jeRAtY4Cc6PTREURAALPuUmoxRhI9yiXfehU3N+yAtpJo\r\nAwgLHNAgUAhPS2WvSs68A/FuL2mD3A6YrqJQKZuXQvh6aMGWtYkF4BjG2WLU\r\nZ8+aOTMUGE1cVP9c52kNA0BCyfNaAJdQ4wkxS7fNtfy5WST2TOejZSo5o+s2\r\nHcIUC+E++uEWQi2P/uLdPofIMqDHAFiBpbUXxR81178kpPGRXAjwKjdP1nI/\r\nqNFnHqDcNLj7lL80ayeDI2skeGTrPldQqOa+Lqqqr4pdDKAnxLd9LCqWtkuZ\r\nAQUvS5Z6PzjjJayDuCxbAegpoLFmu+FlF6ZUeMl7uiyvJZac0mEhheIMLoZ/\r\n8Y0Y3LG6ySUDkF1QZD1U+EESqBhyvPFzNos=\r\n=dvH5\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":"9f61ec5a8f4579f51ddc42c5a3cc59a4ffaadff2","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^1.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_3.1.2_1657297165819_0.7755989655458748","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"postcss-double-position-gradients","version":"3.0.4","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@3.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2484b9785ef3ba81b0f03a279c52ec58fc5344c2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-3.0.4.tgz","fileCount":6,"integrity":"sha512-qz+s5vhKJlsHw8HjSs+HVk2QGFdRyC68KGRQGX3i+GcnUjhWhXQEmCXW6siOJkZ1giu0ddPwSO6I6JdVVVPoog==","signatures":[{"sig":"MEUCIF0HsWwtQSr09xqVEPTJ3eKWMtmyDXnDvkiqBSh+19nUAiEAuIqVBLvFouBpQNbNRPA00JA8IbrjFGx1oyHC5ZgaaO4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cd/CRA9TVsSAnZWagAA5rMP/R+FuIbcEHO04TdV2R5V\nKM72eHTJPAZesFFg9+w6Oq22p4mivzk6Tkqzua2i48MMXx7JfuOkn5z2gKcD\n7D4mJo52kagnCIXP2+Yl5BoUAXAWBsru7MQYm7jvJzmfLdnfF/g3llCpA70Y\nO2RGans3qbJ8rKb5aLjn6TsDfPXCwFD8WxUg0dBNc7111U3Ky3/NUVRTtpe7\nBGCk8tx+3Bvg2QBR0kUQy/yRNUJ8QcMfDYcIDqdEaVVSxS+x3lYfjFkQaO6y\nFcVixB3i1c0QCcdUZvVJK5LqqLoNCWl6pnIPb/cvKO912Dqq/m3Bu7EwlG55\nWHZ8tdjQ/8Z27GisNzuY4S16IuKzS971k7DfhZvIoRelmihVKG3XMxU2Q673\ny3DwMShNNTCyoN2P+rWL78ohVNTWT4eHshn1QygVIJFtzluui2/MgeBLxL3H\nadUiHXfRNpI5sOdKtuRxST4Sz40nvXpMwM0Ce8ZfyWUbtvCWS2ASSX80wdfB\n9S459Sdsiy50OWbc6HUFS36V4Po8hP+47Qs6T7jmvnvvX7SuU2zUVHlppUtr\ndWSuMkn6cQ+JsqhwdzVoca0yRNmXbYKvagNXO9y9CFvRzL62r8iI+YpDAwl1\n9dIbe58rEG8RaJ2ynHnsUIwvgChH8baoiVNLL3mpGPUiGHPe/8xjHAXKXPtr\nn4/F\r\n=rI5X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"b662aa5544daa68a065dc762b18da2e71118192d","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"8.1.2","description":"Use double-position gradients 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-double-position-gradients_3.0.4_1641138047210_0.6867166008612215","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"postcss-double-position-gradients","version":"2.0.0","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-double-position-gradients/issues"},"dist":{"shasum":"e698a97f07fe45654b33591e6d2cb08dbb789d0b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-2.0.0.tgz","fileCount":6,"integrity":"sha512-rSEVU4/2YypLYr4dAyDPRXq93cd3KuCqid/vfYiMWoV4gxH5Qz/6FE6hONtfGKSRzYG4CtxzsaRPIMjM9143AA==","signatures":[{"sig":"MEYCIQCQpZADATqQBP+eG5wGD4rqMPETOUhcn9vukAckkEYtCAIhANbcWeJfIX8SKNfwTpIsm4+2WzAXAr5gyVysWfO3lgoi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJephO/CRA9TVsSAnZWagAAU1QP/1f77SYxJZMMgmoOYRS3\nR0hzs9nPfiaEWmMB2tq1y0IDQd/thvRX/WAi/Na+9KEowyP9bMIu30q2xk0j\n2JLmzbO0XzoSMHPWee1dNWozS8S1CipCSGEdnLV+8HqAnb8aHAbcK4yM2v3w\nkUaqFbgsKFgsafr6V2x4e8aJqjCoxQeixaNH0ePFfa9RzdFMEt3M45OGrLzC\nyb8RQtNgMPy65U6lnhq5t6mdoy0qhFLU2C1YL1NHKD6Yd9htICNSPs2UZXyl\n7+eAmV0vvpY8YsXlzL+gBcxF5Z8cIkaCgZDfh7uY06Vf4nAV5CyhiC/XKqYz\nViWzTMqScTZ4ucOgL6rRu1lUwVyKf5IguNwAsgZc5tFAwPrHUpsg4SsJ5rRx\nxnxnxQdoYE0PSGGPf5hfw4ZGldkLdqLX4x42XpVotofGQsSzOxTeohsfBf8J\nMjodEluRMB9+SPCF1taZQ+IYUkizj8bctp5KhIVogagLus8V5EfEkid8Yqgv\nnAtXpCDM9Rj3s7Gdku54ZezjI4GjeOO7UQGhAvsq6RhVJvNmGu005xFHLwxB\nMaF8WDQjG6OVoO+4/trTPPtbAWDNa/Y1W9ENnEfa6JujLQVUnNN8NRlCmyXg\n5I154sb+CDeKMWUYAAfLtmrgbVMSFwBKkfM+xk7TDkgFpipBcYqQabx8ShLq\nIL/e\r\n=2Y11\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.js","format":"cjs"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=10.0.0"},"gitHead":"a3ed30cc50a71449131fd3369f78d36580740adb","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-double-position-gradients.git","type":"git"},"_npmVersion":"6.14.4","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"postcss":"^7.0.27","postcss-values-parser":"^3.2.1"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.7.2","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_2.0.0_1587942335116_0.29469449624262634","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-double-position-gradients","description":"Use double-position gradients in CSS","version":"7.0.0","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"dependencies":{"@csstools/postcss-progressive-custom-properties":"^5.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-double-position-gradients#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-double-position-gradients"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"gitHead":"0b08dde1e193cdfc6aa06d56c2075a4ac21336b8","_id":"postcss-double-position-gradients@7.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-Msr/dxj8Os7KLJE5Hdhvprwm3K5Zrh1KTY0eFN3ngPKNkej/Usy4BM9JQmqE6CLAkDpHoQVsi4snbL72CPt6qg==","shasum":"ea68a2698ac7e4ed3a3ab517b04eb48476cb1ba8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-7.0.0.tgz","fileCount":6,"unpackedSize":9968,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCICxFXv0qKUCZSb3ZvumuB92dGLw/JHKBF817fRdHcsGmAiEAiXgcd5Tu/BpLvvVB1uQsBTFhdxNU9gMPSC8goFjexqg="}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-double-position-gradients_7.0.0_1768375736206_0.9484705925657517"},"_hasShrinkwrap":false},"6.0.4":{"name":"postcss-double-position-gradients","version":"6.0.4","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@6.0.4","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b482d08b5ced092b393eb297d07976ab482d4cad","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz","fileCount":7,"integrity":"sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==","signatures":[{"sig":"MEUCIQD1fwXEt9tD/VB7EmzuqML/dMsdDme25BqPbwEHlhvFMAIgIKuPbu3nKJIXugyjwqcdwlpw/UyhIKYyYPgipMheEVk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":11506},"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":"ee552346963b5b9cb59dcbc979552a99dab7cbd8","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"11.4.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"24.4.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^4.2.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_6.0.4_1758465443193_0.3893975156247038","host":"s3://npm-registry-packages-npm-production"}},"6.0.2":{"name":"postcss-double-position-gradients","version":"6.0.2","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@6.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"185f8eab2db9cf4e34be69b5706c905895bb52ae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.2.tgz","fileCount":7,"integrity":"sha512-7qTqnL7nfLRyJK/AHSVrrXOuvDDzettC+wGoienURV8v2svNbu6zJC52ruZtHaO6mfcagFmuTGFdzRsJKB3k5Q==","signatures":[{"sig":"MEQCIC960oepiDzuaqycM6pEP87PyJsMh3u1A+OJBXxt76pgAiBgZ4HFnIClOARLqN36hGgse+SwIym3d3mE4UezMrJtPw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":11512},"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":"54f896ca998a24557d6764ef519f3c3549e2530f","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.9.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^4.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_6.0.2_1748342811139_0.7771109573198927","host":"s3://npm-registry-packages-npm-production"}},"6.0.3":{"name":"postcss-double-position-gradients","version":"6.0.3","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@6.0.3","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d8c4b126af89855a3aa6687e5b1a0d5460d4a5b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.3.tgz","fileCount":7,"integrity":"sha512-Dl0Z9sdbMwrPslgOaGBZRGo3TASmmgTcqcUODr82MTYyJk6devXZM6MlQjpQKMJqlLJ6oL1w78U7IXFdPA5+ug==","signatures":[{"sig":"MEUCICrW6nJVXo99Hw71CqukENDvxRHL3oAavyVvt9uu3Nk9AiEAzGMgaSxPMLBTHoa0gpQSr/xyI2O2QeDl0u+4fW9gNSo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":11503},"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":"e80d9d4678c0c713d1f70b45cacdfd87f023fe14","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"11.4.2","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"24.4.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_6.0.3_1755892411199_0.5296727712036868","host":"s3://npm-registry-packages-npm-production"}},"6.0.0":{"name":"postcss-double-position-gradients","version":"6.0.0","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@6.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"eddd424ec754bb543d057d4d2180b1848095d4d2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz","fileCount":7,"integrity":"sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==","signatures":[{"sig":"MEQCIDcTK1pZZhsBrMMlvuEm6bsOV1BovkiZP4B9hInlqZRqAiBob/Euwb4p/KkQWMbbFm40eQODPIQPyLVERQzQ7CTwxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11778},"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":"84f4a251093fbf68db4c17dcf50b56d5587f0f43","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.7.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^4.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_6.0.0_1722721256999_0.33642203177517005","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-double-position-gradients","version":"6.0.1","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@6.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5fde3de9fb78b467244d8c4fde39f60397beb0ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.1.tgz","fileCount":7,"integrity":"sha512-ZitCwmvOR4JzXmKw6sZblTgwV1dcfLvClcyjADuqZ5hU0Uk4SVNpvSN9w8NcJ7XuxhRYxVA8m8AB3gy+HNBQOA==","signatures":[{"sig":"MEYCIQCvbTncwnqw7neOJJN1OddTlBwjkNFh4zvf/+sR134VDAIhAPhrTz56Del8Zc+w8l/slWxKmmjtYDOIKncfvE9APxR+","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":11514},"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":"dc8e5b13b28faf3ec023bf0d05ddc642e7cf3566","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.9.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^4.0.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_6.0.1_1745079316003_0.17432554415383406","host":"s3://npm-registry-packages-npm-production"}},"5.0.0":{"name":"postcss-double-position-gradients","version":"5.0.0","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"cdc11e1210c3fbd3f7bc242a5ee83e5b9d7db8fa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.0.tgz","fileCount":10,"integrity":"sha512-wR8npIkrIVUTicUpCWSSo1f/g7gAEIH70FMqCugY4m4j6TX4E0T2Q5rhfO0gqv00biBZdLyb+HkW8x6as+iJNQ==","signatures":[{"sig":"MEUCICCas3GGA0ZfeIinX4bM6iCUK2hKyxTi2k2Y5jsBnLKwAiEA+ALOGY/niBs7AHMD1G4dgMA9k612BYAXnm7uc5MHzzU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15835},"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":"1e87e2f3a41e096e24ba4fddad572707c53975bb","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.5.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.0_1688373114292_0.7168701449202259","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-double-position-gradients","version":"5.0.1","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5f28489f5b33ce5e1e97bf1ea6b62cd7a5f9c0c2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.1.tgz","fileCount":10,"integrity":"sha512-ogcHzfC5q4nfySyZyNF7crvK3/MRDTh+akzE+l7bgJUjVkhgfahBuI+ZAm/5EeaVSVKnCOgqtC6wTyUFgLVLTw==","signatures":[{"sig":"MEUCIBaNkSYyT/PiVJKP7UnnCwzBuoiyqoscqBeEN9mf6XfSAiEA3JTh9ziE59SoxC3GMLKMyOKj0f4UhFadWsh3EMd77gI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15477},"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":"0dda8f6827ed2cb212c615d1c3f2f2224aa87617","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.8.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.1_1695053656992_0.5468503078441784","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-double-position-gradients","version":"5.0.2","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a55ed4d6a395f324aa5535ea8c42c74e8ace2651","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.2.tgz","fileCount":10,"integrity":"sha512-KTbvdOOy8z8zb0BTkEg4/1vqlRlApdvjw8/pFoehgQl0WVO+fezDGlvo0B8xRA+XccA7ohkQCULKNsiNOx70Cw==","signatures":[{"sig":"MEYCIQD1wZ6KkdLx8iKxNrj5F3Yg3Ilbckb/UeDrXg4rXjWHlwIhAL4/7bV6gXR8M7xrh0NkfbuLJbOBl+uuY6zu2olyccYG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15810},"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":"449f88630f38f005959fffd59036a27a9409027e","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"csstools":{"exportName":"postcssDoublePositionGradients","humanReadableName":"PostCSS Double Position Gradients"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"9.8.0","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.2_1696872829214_0.8923776811152901","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"postcss-double-position-gradients","version":"5.0.3","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9345b273bd16056665209ce260be0d36ac211f65","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz","fileCount":7,"integrity":"sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==","signatures":[{"sig":"MEQCIFdRbA27OvDrdi+Z4oV5ZkObn+78cahcYb153yk3Bk7VAiArmuy/P2754nkstDhJIolVfcprYwWeECV2/d59aFbq7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12729},"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":"03d034cd241f3f7b8d9a7686bd9b2068d42348f5","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.2.3","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.0.3"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.3_1702682582985_0.8533735386580665","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-double-position-gradients","version":"1.0.0","keywords":["postcss","css","postcss-plugin","double","position","gradients","linear","radial","conic","color","stop","syntax","repeating"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-double-position-gradients@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-double-position-gradients/issues"},"dist":{"shasum":"fc927d52fddc896cb3a2812ebc5df147e110522e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz","fileCount":8,"integrity":"sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==","signatures":[{"sig":"MEYCIQDGpx0iz2+WP9GUCBH2wlQM9K4+3gFSqg57x7oUkEOAjQIhAL6z9NJxavbY1ksBUSYiX8O7foPPMi+EfqSy0XP9FFCE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1gHlCRA9TVsSAnZWagAAXnAP/2+RI0t35oJe2TGKD6iw\nZHpa62AuSlOF11/B0b7ZnnnULZnuRwQhNFJiS+QrL13l9mvf/AEMKWOj3FgS\nMxFfMgRzD4Ff3mANGA+xxK6cRYlsIYqhJ3juHP6sbPVrv5uthtCU4aV2eCUE\ncrwFObF2FOJdBPalTo8d89r3XMEohZq1Sx9LP1LYmAt75yrv/01sF1+Dul+q\nIbTfZ7ds1mTLclDmEsOJzXJu4bLftfzjMg35Bs62y+EnnscjJlUkQyMWIf/e\nqRZIVBN2BD5Ny1ert7UeJeQM0P5DWHRqxXMvpMRZ2EgRX7U7/GeXhsMG/nj9\nfW5AS1M5x5h6nI0YLaqyHQOE6FlO6x4EFBCc1MRRXKnwHkNkk1MIra4Iot1p\ns/fjbgbBY+N1SUCEOLnO3qcytucYjkx9higtrqXViEVA2a+ap9kQZ+d0NU7W\nUrT8aDfbF35RlipcX1e8KlaLFmyozLBACE+rhXhJNULz3SjFC9Wik9r+8j9x\n2O/AeGb8YSpEE9nr6d+qsXz52qEAHkH6K2LZ0F8MhexvL3FxbJJcf6wESMY4\nX91mnixRPHEJK7NksWdxxBVk40oWDxqOIwiGCHTevu9Uxzbx+Cur+HwVdO8L\nAbuJTabBOP8OlMiuEw9Y30M/mCAI+yLH+RM9xWSAIBWy+AYkVvddkKbJSJVb\nbG9r\r\n=MzYs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"105bfb3d003c71d39a15782d13f1ba0edac60724","scripts":{"test":"npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-double-position-gradients.git","type":"git"},"_npmVersion":"6.4.1","description":"Use double-position gradients 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.66.6","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-double-position-gradients_1.0.0_1540751845038_0.540238759645046","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"postcss-double-position-gradients","version":"5.0.4","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"294787043e5e6187b5489ee52950ecfb303f9ea9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.4.tgz","fileCount":7,"integrity":"sha512-xOH2QhazCPeYR+ziYaDcGlpo7Bpw8PVoggOFfU/xPkmBRUQH8MR2eWoPY1CZM93CB0WKs2mxq3ORo83QGIooLw==","signatures":[{"sig":"MEYCIQC7KcKqPJTxDmCgw2q2F34f+vU7wUedbukZXSRrXHOS2QIhAJLoTHTGdcBGc/CT97efmrzt2//+0d5HKkn1YXitKzX/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12230},"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":"6079c9c28445e9bca7a65b2eb9ebc2afbbb667a0","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.2.3","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.4_1708330096331_0.6314934891368378","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"postcss-double-position-gradients","version":"5.0.5","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4baa4d3ec35ef59ddb8b7ee44fd8855cd7faeb40","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.5.tgz","fileCount":7,"integrity":"sha512-26Tx4BfoxMNO9C89Nk56bfGv4jAwdDVgrQOyHZOP/6/D+xuOBf306KzTjHC2oBzaIIVtX+famOWHv4raxMjJMQ==","signatures":[{"sig":"MEQCIGMIQVBtssZemE83J7phxzg/DCeaXvfY5gIgYtiyqRWgAiBSTIlaPQewLdRalQRgsFjmjTgsDC8qEbouB4xfAciJYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12233},"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":"2712166d026d6f8fedd0cd9ca79f840165946436","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.2.4","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.1.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.5_1710355585076_0.9047948367360714","host":"s3://npm-registry-packages"}},"5.0.6":{"name":"postcss-double-position-gradients","version":"5.0.6","keywords":["color","conic","css","double","gradients","linear","position","postcss","postcss-plugin","radial","repeating","stop","syntax"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-double-position-gradients@5.0.6","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"fec69371a131b67ec92740bcf8c9ad6ce7f168d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.6.tgz","fileCount":7,"integrity":"sha512-QJ+089FKMaqDxOhhIHsJrh4IP7h4PIHNC5jZP5PMmnfUScNu8Hji2lskqpFWCvu+5sj+2EJFyzKd13sLEWOZmQ==","signatures":[{"sig":"MEUCIQD45EDsW2RndPaWplHrvffQcIQ6TL57iQaDaEE7mVW1swIgM15ss31rWWOyaOGovXXej8H1vp7IfMMGDUunTSe/s60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12207},"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":"bc0e1915b04a42387a3a6c2fc2864eaa16806555","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-double-position-gradients"},"_npmVersion":"10.2.4","description":"Use double-position gradients in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0","@csstools/postcss-progressive-custom-properties":"^3.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-double-position-gradients_5.0.6_1711891157524_0.33051290560603475","host":"s3://npm-registry-packages"}}},"name":"postcss-double-position-gradients","time":{"5.0.7":"2024-07-07T13:43:08.172Z","4.0.2":"2023-02-08T08:36:20.342Z","4.0.3":"2023-05-19T15:51:43.187Z","4.0.0":"2023-01-24T08:57:40.422Z","4.0.1":"2023-01-28T07:37:04.767Z","4.0.4":"2023-06-01T13:46:58.524Z","3.0.0":"2021-09-17T13:35:55.478Z","3.0.5":"2022-02-05T17:03:30.576Z","modified":"2026-02-16T13:28:03.085Z","3.0.1":"2021-11-18T16:39:41.780Z","3.1.0":"2022-02-15T19:05:18.159Z","3.0.2":"2021-12-13T09:29:19.394Z","3.1.1":"2022-03-07T11:04:58.734Z","3.0.3":"2021-12-14T06:20:47.763Z","3.1.2":"2022-07-08T16:19:25.961Z","3.0.4":"2022-01-02T15:40:47.383Z","2.0.0":"2020-04-26T23:05:35.244Z","created":"2018-10-28T18:37:25.037Z","7.0.0":"2026-01-14T07:28:56.337Z","6.0.4":"2025-09-21T14:37:23.386Z","6.0.2":"2025-05-27T10:46:51.312Z","6.0.3":"2025-08-22T19:53:31.402Z","6.0.0":"2024-08-03T21:40:57.168Z","6.0.1":"2025-04-19T16:15:16.165Z","5.0.0":"2023-07-03T08:31:54.511Z","5.0.1":"2023-09-18T16:14:17.242Z","5.0.2":"2023-10-09T17:33:49.380Z","5.0.3":"2023-12-15T23:23:03.209Z","1.0.0":"2018-10-28T18:37:25.201Z","5.0.4":"2024-02-19T08:08:16.490Z","5.0.5":"2024-03-13T18:46:25.274Z","5.0.6":"2024-03-31T13:19:17.684Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme"}