{"_id":"postcss-image-set-function","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"dist-tags":{"latest":"8.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Display resolution-dependent images using the image-set() function in CSS","readme":"# PostCSS image-set() Function [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[![NPM Version][npm-img]][npm-url]\n[![Build Status][cli-img]][cli-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/image-set-function.svg\" height=\"20\">][css-url]\n[![CSS Standard Status][css-img]][css-url]\n\n[PostCSS image-set() Function] lets you display resolution-dependent images\nusing the `image-set()` function in CSS, following the [CSS Images]\nspecification.\n\n[!['Can I use' table](https://caniuse.bitsofco.de/image/css-image-set.png)](https://caniuse.com/#feat=css-image-set)\n\n```css\n.example {\n  background-image: image-set(\n    url(img.png) 1x,\n    url(img@2x.png) 2x,\n    url(img@print.png) 600dpi\n  );\n}\n\n/* becomes */\n\n.example {\n  background-image: url(img.png);\n}\n\n@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n  .example {\n    background-image: url(img@2x.png);\n  }\n}\n\n\n@media (-webkit-min-device-pixel-ratio: 6.25), (min-resolution: 600dpi) {\n  .example {\n    background-image: url(my@print.png);\n  }\n}\n\n.example {\n  background-image: image-set(\n    url(img.png) 1x,\n    url(img@2x.png) 2x,\n    url(img@print.png) 600dpi\n  );\n}\n```\n\n## Usage\n\nAdd [PostCSS image-set() Function] to your project:\n\n```bash\nnpm install postcss-image-set-function --save-dev\n```\n\nUse [PostCSS image-set() Function] as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssImageSetFunction = require('postcss-image-set-function');\n\npostcss([\n  postcssImageSetFunction(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[PostCSS image-set() Function] runs in all Node environments, with special\ninstructions 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 declaration using\n`image-set()` is preserved. By default, it is preserved.\n\n```js\npostcssImageSetFunction({ preserve: false })\n```\n\n```css\n.example {\n  background-image: image-set(\n    url(img.png) 1x,\n    url(img@2x.png) 2x,\n    url(img@print.png) 600dpi\n  );\n}\n\n/* becomes */\n\n@media (-webkit-min-device-pixel-ratio: 1), (min-resolution: 96dpi) {\n  .example {\n    background-image: url(img.png);\n  }\n}\n\n@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n  .example {\n    background-image: url(img@2x.png);\n  }\n}\n\n\n@media (-webkit-min-device-pixel-ratio: 6.25), (min-resolution: 600dpi) {\n  .example {\n    background-image: url(my@print.png);\n  }\n}\n```\n\n### onInvalid\n\nThe `onInvalid` option determines how invalid usage of `image-set()` should be\nhandled. By default, invalid usages of `image-set()` are ignored.\nThey can be configured to emit a warning with `warn` or throw an exception with `throw`.\n\n```js\npostcssImageSetFunction({ onInvalid: 'warn' }) // warn on invalid usages\n```\n\n```js\npostcssImageSetFunction({ onInvalid: 'throw' }) // throw on invalid usages\n```\n\n## Image Resolution\n\nThe `image-set()` function allows an author to provide multiple resolutions of\nan image and let the browser decide which is most appropriate in a given\nsituation. The `image-set()` also never fails to choose an image; the\n`<resolution>` just helps determine which of the images is chosen.\n\nSince this plugin is not a browser, the image options are sorted by device\npixel ratio and the lowest ratio is used as the default, while the remaining\nimages are pushed behind media queries.\n\nTherefore, this plugin can only approximate native browser behavior. While\nimages should typically match the resolution as the device they’re being viewed\nin, other factors can affect the chosen image. For example, if the user is on a\nslow mobile connection, the browser may prefer to select a lower-res image\nrather than wait for a larger, resolution-matching image to load.\n\n[cli-img]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml/badge.svg?branch=main\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-img]: https://cssdb.org/images/badges/image-set-function.svg\n[css-url]: https://cssdb.org/#image-set-function\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-img]: https://img.shields.io/npm/v/postcss-image-set-function.svg\n[npm-url]: https://www.npmjs.com/package/postcss-image-set-function\n\n[CSS Images]: https://drafts.csswg.org/css-images-4/#image-set-notation\n[Gulp PostCSS]: https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Loader]: https://github.com/postcss/postcss-loader\n[PostCSS image-set() Function]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function\n","repository":{"type":"git","directory":"plugins/postcss-image-set-function","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"2.0.0":{"name":"postcss-image-set-function","version":"2.0.0","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-image-set-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-image-set-function/issues"},"dist":{"shasum":"3f43f25bc242ec1319c4bd879ccfd62ee5256feb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-2.0.0.tgz","fileCount":6,"integrity":"sha512-2bpCIj2wFhIhpyM1G/ZZgBJM8K/VKbEcQ0SX5MI9MTGv4giPMnuXMa/sX3bHXHhi1PL4v2WRfqD1+w5T9EhFqg==","signatures":[{"sig":"MEYCIQDKQ8Bi4XtKJf8zXUVQudTeE9ZBpCavU6o2bK6ccFGDnwIhALisZUmxMCIbpvpfaCJcBFM57vC88KW8JXTV7pIuR7I/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8PKDCRA9TVsSAnZWagAA2sMP/iLmsDPdJAu6w1Eyh1TM\nRrD+3w0XiQcf84kYBd7ibiBc7qj1kTEleehjqPNz+U4aD7KGX0EWHHgggd5x\nqFZW5UXvxuJH7h802bcibc0nrehB/y3PZJrd6k92fNMeEEwljRqlBkMyfGLa\nP4g9aB0qjCeqbfoImvJxuHgpxmfAuh9ANyrFFEHRlnrmlsju7JDe6qNiBHbf\nzAxYa6CM1CJbynJs90aDY9suVQAkTEQp97/bb6FqU93e15cYOh3NbPbZ3Dw1\nC4LxWzE2heV7EZK36jhJ833h493VGHEkWMCwQEW/Xb+fV0OMrCZF/ORtG/ji\n0EUblg6Ewyej42asBPZ/ZyHB2Qtzt7YFMNMOB1vXQswaPq0OV/D6a/CraUEL\nt2EOE3mgkzYlNC64FG9TCNDkhrYjEbHrAclYGd1oacbKfAzwK5B//8HZTpPL\nmN/+1HtCwJeeHpY2WhOvSjD6mXy9nccERON8kvlOPbVMynocxeX9Q8FYoctr\njTJkytaHrtebqHSKPYSRq6OeG0oRxk/ePp5swh6HgakwWylOamnSFlPCvBm2\nTTPHj6LpEAZFm17YSJbz0qflJaa4rTP4DDo2FR01TrpM6KmrkeYcYdcInRhy\nFGrZ3sMR4+/grh9ZT/S26H3OUhuZSjfZiIq2H5HO6zbdyTRVQRbkQ3/qy0zE\nN2Hw\r\n=iHen\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"52fd5c1875e262e76a0a1c92c6b7dd7471e6cff5","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-image-set-function.git","type":"git"},"_npmVersion":"6.0.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_2.0.0_1525740162493_0.19278308578660885","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-image-set-function","version":"7.0.0","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-image-set-function@7.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"538e94e16716be47f9df0573b56bbaca86e1da53","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz","fileCount":7,"integrity":"sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==","signatures":[{"sig":"MEUCIQC6IX6yYSmmaIg7EVdlFdwXj5nxtVa7YQlqxGVPKDeI1wIgQ3pM9oGpqlQFzsSFHOziVzQMJDPi+Q/vZYOxMf8LbG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15140},"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":"800315343c4ad6ba57cfee9eee045a568c8f222f","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"10.7.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/utilities":"^2.0.0","postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_7.0.0_1722721027825_0.48207953673953696","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-image-set-function","version":"4.0.2","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-image-set-function/issues"},"dist":{"shasum":"95b64db01b8812fcbece3bb36a3f2b8133bf7c91","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.2.tgz","fileCount":9,"integrity":"sha512-NbTOc3xOq/YjIJS8/UVnhI16NxRuCiEWjem0eYt87sKvjdpk00niQ9oVo3eSR+kmMKWIO979x3j5i1GYJNxe1A==","signatures":[{"sig":"MEUCIQDtdEJB1ECF7+CmPrYVx4lO3YVQaA1q8/hNzDdJepHHxgIgW8MuF9QLs7NujGgYp+jj4tUJ1By/Ny2CisS2X2dyFw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhl2SfCRA9TVsSAnZWagAA0sUP/i6nVwlkOzisTkT0qA22\n79b6uMxytZcNvqU51OBvA/g2M3Y9IAgOAhcpIKSic4Sz59xk3PthpBWcChfq\n4SmPgtCg3oMT4hLs592LLAfwTul8kzKy+YTpF8hIuME7RsCdj0lmyt9kmGIa\nLRnef/WeIGH5oYTgbwslf5s5+RvQGqjQD+rcMsFr109nFG3YxxKrcVvWi9La\nTPr9VYlJht9VHkTH8yBwhVR4/ViPon7Rhx/gVytg2EB6FYXW6UHqE4ow8h95\n5KiihPw7NMQc+USCOws0kqI1kCeePs6XebsOYdi05kWy/DJXBe0Z0Lbe9vja\n3cskJXEqIZ0Srn4ovUiq3tc9qZ2OfZqjCJxa8/hqixLLLWzbjEev1dKDEPwR\nJ7qE/Pxbk0L5DrnK6FS2cCtbd5OiRwxHtbFNYzC8xbPl5Mt7kZGWa/OU6h87\ncqm5ggsNDnH1/GXg/6Zqi1BtzXtwzz6RMDyN3REDwoUHyqK/UwKIRPFLe+l8\n3VGgIEVbJyPsiiphlgVFCtzsMiqKmT3A9s6IwYbahP96x78zBtEGhSEEYqBE\nIDfY9xTguDM2pUMc6oESKQW79inZRzdfZ38H6Asi9gdMcG6+J3g4ARoXopw5\n39pKikcw2BXiGiZunII7OCG8NAAJfW77IWWE51YT04tdLUllkfNkniE41UOi\ni/4p\r\n=3mSR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"fc8c37214c17d62894a4d4b918b00713dec9cece","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-image-set-function.git","type":"git"},"_npmVersion":"7.24.1","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"14.17.6","dependencies":{"postcss-values-parser":"6.0.1"},"eslintConfig":{"extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.2.0","postcss":"^8.3.11","postcss-tape":"^6.0.1","eslint-config-dev":"^2.0.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.2_1637311647325_0.11936917648601408","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"postcss-image-set-function","version":"4.0.3","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@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-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-image-set-function":"dist/cli.mjs"},"dist":{"shasum":"1be9324adf679226980c554542ea3fe5d056856f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.3.tgz","fileCount":17,"integrity":"sha512-+EZRaCg/MzsKW2ggTy26mG/uoHnEAjCcGICCkUYgg2PPguZaRjSBKY4KHiWcdH6ydsR7enlnO3i7bQ+Fpbx7vQ==","signatures":[{"sig":"MEQCICG8tCxjdANDqGnxU837Wb2eQoqIv4zXfbSJzyLD/MSvAiBAA/7ZxzpcuZpLoIKM6jO2SthTZQDvhOsakMwTGSGK5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138170,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxTpCRA9TVsSAnZWagAAvLkP/1X1+28rluCN108KzDVk\nHJG55K9XT85ElIKpCRy2cN4BfoWCy12csrDzbcv0FfCFbYI/JRkZJefacFWi\n0HxQPrvQaT45/bFy37bgDhfgjZI4EImcOkokI7OrMAy/FMfDDijVoml3pC0M\nSa4lZlVNoDOS0Pa3TlvMIKysjecybOX3kmnaMONmu1XAR3kpWhU4WhPuqo70\nsOkKVTT4pnrmIOLM1w2syrsazKdzBYnHJTm/afzeAZYMF2sRr0Q7GJlZvgQs\npl4ea1aoCDMU8WI2gyFdwvPe3yGU0mrbtZc8Ul3UGxHZAmj2MqG/c6zkWOJC\nMtpBzH8NQvi0Fxy9dglP9EwJ8MBnmxA0wR0KKHyQ3/nE6WUVF0BQPgnLEy1A\nOoMtLOwE0ZauUDbrBc8VL6XoKyy7Jqk2Tu1i/8CYu/iFe3rEKBr1O2WPLj91\nlxgT3YTozh5VdOG80gnH0gGtFRmU3ROXGZNKZ3RhPlzYk277jclXU8IMxdfw\n6RgB45+jMMXjELf73DIP6itmLJuYb/2YE6txrjHJ2yTnplZvlWJzpcfN9Mog\nRkP2uZtNChh8a0YwdRQZ5uhzEGkYqxipvvytHXmT8ZcxO9DUeiQfbCqxrR4O\ndAOn7Dq3YoYaT8V+NaToiN6I01m7hbdAth2F+cTRMluGUKUnV3BJhxf7fZ8u\nSILu\r\n=iav1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"51f93e594c6ce7bf96d57794c062b8541d6855a3","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-image-set-function"},"_npmVersion":"8.1.0","description":"Display resolution-dependent images using the image-set() function 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-image-set-function_4.0.3_1639388393755_0.042996344582674206","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-image-set-function","version":"4.0.0","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-image-set-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-image-set-function/issues"},"dist":{"shasum":"9375c87ec234c20510f015acfefc29b6977fc11f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.0.tgz","fileCount":9,"integrity":"sha512-xTroGD+hKuYnvtvWh1UzK/YqS82QvnYlOuDVfcZrnb6KirJFeaYYIKnODmNPKKB7lcOgUmkOq4I5s0Y6N56vtg==","signatures":[{"sig":"MEYCIQDYYlz5QVxfle5HS36kp3+8+P+6uZEgH4ffxiAN4rbjHAIhANRtrPHdwYlSpB2mx/ZZbuDpNWYKwWXE1DShWTrbKDxY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18642},"main":"index.js","engines":{"node":">=12"},"gitHead":"40b746e72b2c80b137728b297e9d15588ac907d2","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","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-image-set-function.git","type":"git"},"_npmVersion":"7.20.3","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-values-parser":"6.0.0"},"eslintConfig":{"extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","postcss":"8.3.6","postcss-tape":"6.0.1","eslint-config-dev":"2.0.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.0_1631886807202_0.8451208385981246","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-image-set-function","version":"4.0.1","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-image-set-function/issues"},"dist":{"shasum":"654044660377722d65b51b0d2b68d5caef8c9c77","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.1.tgz","fileCount":9,"integrity":"sha512-50QZj68Y5tPSzuy1tekf35re2+HxOkRZXO/Y0DwUPcJuDaDKQreG+eKEEeGvv8VYtrPe7HQq42ysXuoQoisxeA==","signatures":[{"sig":"MEQCICgoT/i61KlwHpEjuSAPhMTxLZ+m6m5rsylg3ygs+V3lAiBM0IbkUIb+TXrUIZ+THE6b+sFpR1VFInyv2poeSRaVpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlperCRA9TVsSAnZWagAAuHwP/1N5PsPFdiB/q0qdkJxq\nfqdtX9tWuZXTP6+BwOPs7K4LpceEWByp3fRo5/gUmANHWT+L49q0sae7HpJ0\n9DvV6319fdavYprxvBhZduyl6h670kSFgzNYLhSpCm2y95PNiclQC+HCBTH/\nH7l2fk1EI6fzJD7QG7bsUe3qw2dZDrOnfXupSOQ0VLBbL9qC4957RZj76qoy\nIZg6GNK+6pqTAm24Mv/fokqU0jIbLRH9REFhnvLDA+e9rETXstaPPYCOfeB9\nVhiHjAnNCZ0BZWWcYQxDcNvMB/imZyL0ZJ4CFrxYMXCYKldAxvqJOlIFG3to\nuy4O/9CPBxBaJwqyrvKRGVXrDd5wxl2VMXMnWI14pn+rDyzLK20MH/q71Oo7\nBtylek4D/jRno8LKBlzjvWDz7+FclpNYUgo2j79lLJHkk0DD3ZUUy8bdnH1/\nC0HCvBkPNfdsPNtlnJYcZ+10A9HFMSixxCjw245nARyRZE2VdA3NIjgjeXd4\nG6ZbFlQetwecbaAC3x+XQ0OrUp6KOeWgEwz3uZXx9IZPYUvkcQ43/aeusju2\nnEUa7jCuz8EfFA7XZPjr4+YYSaknj/U74OXKkFpdh7pqmNFbq4POjAyn6sPd\nascNlBdrj+HAj8C0cTZ6GnWxfOi7SQuUz09TNRs9ByNzwc46+n926Xx0dAOA\nvuKp\r\n=b4y0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=12"},"gitHead":"940f4cec81dc0a8ddb6be022db984c46802e2c26","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-image-set-function.git","type":"git"},"_npmVersion":"7.24.1","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"14.17.6","dependencies":{"postcss-values-parser":"6.0.0"},"eslintConfig":{"extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.2.0","postcss":"^8.3.11","postcss-tape":"^6.0.1","eslint-config-dev":"^2.0.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.1_1637259179075_0.17803431576814321","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"postcss-image-set-function","version":"4.0.6","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.0.6","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"bcff2794efae778c09441498f40e0c77374870a9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.6.tgz","fileCount":12,"integrity":"sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==","signatures":[{"sig":"MEUCIETcT0oZMedzsYxtLG81dkdAHmKZGYevJFx7Do6aM6NmAiEAu3VYslDtQuBQb4ClRgAhKjZRpD6UNXCGPOMSQu+gOn0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/q/jCRA9TVsSAnZWagAAB8cP/2mBXHO3czJid9VZXxki\nd1GWQEVaEkBNsz5chvO8JES7Hg/xZcSsUjLd1uO9rogu6gMuth4qfLCNgXeU\nbBJf/LqcxfT1LS9kLdaE7VbeFpjtl4LetX9oWAqsnAC8u7eawCAR4M0ZLGgp\n/ON2LgOZgTPzx69uFJdgF4qhUyi3PT+uNfwZfglZPtJjDJVENzOFLGjb4RHf\n1pLMWoe6pbTzA8E6YfObIM6C6BCo+phFXKYe+S5uCS+PhK/0fRhuNaFM/GeP\nmzGqvqsDmad5LgKayHUvuLBnQxSWTizCgRwOu81I7EAoHMi8WoaWRwiVqjAt\nNPMkAxqpJNu4xKs2UvZKoAFwbgfV++ZHuGIr1OGoYBpxshumG8OB7FT8K0EV\nN8vrtF9aOZ4nadGc+mo4CFtqlRK5qtS467YLLVGrGvCAD/3CH4DaBbXzs0vx\ncEn7BYzAPkcY7tUu09HJT6FuxWVpYCle+2kcd+lncXLeKqLGWOw1bMFm6apd\n2LZUTQLQMG6LlhHlm38qrRZU1L6XD7vOi4mQg1IcX/iJnn8vAokBUSeB4kq/\nNwLHTswVcoGF2qFDsqr+w0elLruLBRLArqmag/t5IHnq2zh3skafskg8TQk4\nI86CqS5C4P6vH4psEISJFkLGs0hyvuTiygirZC0Jxi6ocHIwiFHy8cNt22vT\nNh2E\r\n=VvvH\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":"11a9512b76ccf01e8e0b9d01adcd84b839fb01d4","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-image-set-function"},"_npmVersion":"8.1.2","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.6_1644081123516_0.4473213987244784","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"postcss-image-set-function","version":"4.0.7","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.0.7","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"08353bd756f1cbfb3b6e93182c7829879114481f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz","fileCount":12,"integrity":"sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==","signatures":[{"sig":"MEUCIQCfcLyRGNJTfvmEuHGKckVR4uqjl8PoFuWRs/hpkYF5kgIgWVfH3EmWnofyD3b7OdQzP6FzbjiJcgCu6IUSA5N4Ct8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyGDqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmre7RAAloMCTdcOwoFzxUaoOPIzy+Oq7AWFNAUAarTrYaQSFgTYi3OU\r\nfBA51fUemYliTMqPVR3kMRCZCfJrvZtpuHmzk+QGE2RxlWofG/GLvl6VqY2+\r\nGslJcnMFE3FT8PN1FihAd6IzBOS+dCiq620kIiTHXxBLeH/v8pUsYx9BvXKS\r\n2O3cVCxMGdnie1los+XgwoEXrxm2WCN/wxRj4Qo6wzLncLKgl6BXnc7MRb+V\r\nzlMDgtmx0pZ4kuuCFvfl1xkp9GmFwN6ryJzT85ufXfnH3Wm5chrYNTjP+J+P\r\n1MlctTBGF7K1ekOPvjBJ8EBxFl/3spbbgvz5nQ9aLlnhPVUR1iFt1TNVeXzM\r\n1VmnF3Dgz1WA3faLncTydNqicZOpziAEPmoMqKy91dOwpJEjnO+tVaUOnlfQ\r\n17WgYOwjqrd5rdWuZHJpPRXkPP0+lQz3ZILRG2z9Hc+++XQZFtn8Hf3RaeHp\r\nUVWpepYCpQbY5owC4MS4kPx0xs5N51rSe358qVseGZNB5i6rnpdEckPa6zko\r\nP1Zwnbh95a/lTAlAsX4lgFnhiszn8/Yv5ZO8Q49qD8tblzo7S8JNrxGCUiQD\r\nZIDEx7FB2rOoY86nsAbIyHb2ig3dORqKCJlB5x3CnXwBEBixir+NDNY3GKc3\r\nm4OPjm57nLQrvuIfyA5164TxcPlHrjkZCpE=\r\n=pIRx\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":"3ea4185210582f6e032e991f4356660a6e337d0b","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"8.1.2","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.7_1657299178211_0.3875381813832932","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"postcss-image-set-function","version":"4.0.4","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@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-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ce91579ab2c1386d412ff5cd5e733c474b1f75ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.4.tgz","fileCount":12,"integrity":"sha512-BlEo9gSTj66lXjRNByvkMK9dEdEGFXRfGjKRi9fo8s0/P3oEk74cAoonl/utiM50E2OPVb/XSu+lWvdW4KtE/Q==","signatures":[{"sig":"MEYCIQCtwqAYjwH3Kan+vIDklhzP/0Xe28fVrieuUKYi84ZwkgIhAI41161oQDafZNxPADWJIiPdsBKzqZSNGrLKgMUcj1bG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cXqCRA9TVsSAnZWagAABiQQAJMhem8ifiejUgm7uFLz\nkWmWIiOQLo/dxFTs9PAY8HKutjCA12XkFCep24Lw3X/HvVYu9lIwNjoJBRam\nmKmViKPs3dYb7t02kTn5LyxcMWHoLB4SjWIzz3oi4EEY/u+9ZE5d7rHHtT0/\n9lilIW7nso6sdE8mS/ELs+du5jY/GBGGkgfVK5104tag2rsxucNr+UUzt4z2\ny+RCWK3PqyhjYp+gPCrsT6/PrkfG46/Ne9MH5iiPYNUUvtfpiinb1O9cPfy9\njYIca6e0dFbA67oVvFG3Y03kA7BYCRkzjBqcgSBn7n5bxrXxynrBJw6tqmQU\nYsaMs0/7WQBFJTeH3R8+uV8SvLNgGUr0Fh44UQDBdmLqzpcKQDWrElHvU2W0\nV0nv9jekV8NpviVmf28Juxp5MOcXmT3jkDd4UaZEJ0lKVXGU6tf/lgI6sFbf\nNxMSjVtoWYEd8Ky9tHPUEzexlVxsyoDo2BquBNL7YzUNKPpI+7cFJfmEnkQx\nBZpOzlQ3Mc1OWSUw8H+khZnVpojS8DdmL2bJodcJMMWhQb6aK606GTSdODWv\nTxpZyba0Hy0PT3yxGcEB1PAfBl4m4fGj3LD9cGOxu5e0116KIDn/lvP7LiI2\n5Ei1CKxAI05biTpTOm6j46IHGpZuVbAhQjvzKe0uCoq4t+CHSyMSjBYYmMIf\n5Cie\r\n=9Jfi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"ad644da77a0bde288a85e49d9750f24a2f077f9b","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-image-set-function"},"_npmVersion":"8.1.2","description":"Display resolution-dependent images using the image-set() function 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-image-set-function_4.0.4_1641137642579_0.8802788578555976","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"postcss-image-set-function","version":"4.0.5","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@4.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-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"8cb3a971507e2c00d5532658af62529c89f0ecc6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-4.0.5.tgz","fileCount":12,"integrity":"sha512-D4jXzlypkJ6BiSoUGazrRlR+GF3SED+BeiRDzOmuinDKdAn/Wuu8KtEGa5Z4pg4kxyeSMBywMgNt2+Yi/TZPPw==","signatures":[{"sig":"MEUCIDEzG5+cFwHv0jA97AUcNh/mPB2P+qeloO2sM4TG6YNkAiEAuQGG76sjjztW2JE8Sm0Eir3B4lI8esyUXS9BOr5rGak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh95XLCRA9TVsSAnZWagAA+PAP/jtPdwENGuehWaZnXhIn\n9ViVcwACvkLCy+kBJ8Vfxjt+gihCvTk6s2FhO1JyoNO0qz5FYQTZTSdxdAm4\ne2b5xM0uK13JsIBDdvRZ7j9as2PETxKNFLxIjn65PCibIe1riM98ockYZgdd\nY7t3JIYp6cvBwA0PcBR4tRSGI3yKDz2phfcgtjmE3UZYSaiUfk+xacXSzSn0\nQrsc18ATFLRzEJ6hGiaCy0SVASnuQ6OSl4ol09zvxrYmMAhpg5RmgjDKgYSs\nDgPhafLG1AhGPuWotEX6tvVFGl1OzDeqUfFqBgcrB1fAHe5QqpTB+nrxmODv\nDMos+gee2t6x/94RlHJYfr8cBwBymE2ODU7wERETRIWthgP5g7T8eiOnZd3p\n7b8OmAJyXCy8z5XkkidcM0/tY9HAoxpJcK886r4v8sXvBUiC+VqB2HBUBWvS\ncvztLiacMN6xvGDninlAAxqgMdrf1nt0K1VXAsRJdWU2epn7sdp5VI4bR6kF\nOa5mVSNvz/NCi/4QgyhA97Tj8xiaJqepuqc2ISDcMxbk+Bgn5cndwhfq9DUy\ng+6wWceUHNMsnAj3/VMDyrQSFDEe52OhcnUhmbXwyKd0zSopiK+jH72foYy/\neoItHyeJUT5UMdw/DC8pKAbUwc4eu2F7XqjK1Kf0a1BAvkygpc3h+9QI6P3y\nOXF5\r\n=XfTw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"a898a2137a923ec0929e644626338348ce623b61","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-image-set-function"},"_npmVersion":"8.1.2","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_4.0.5_1643615691624_0.29586108598596317","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"postcss-image-set-function","version":"6.0.2","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-image-set-function@6.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ddf62a4468207ce7de2f99154325adbe6c95c032","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz","fileCount":7,"integrity":"sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==","signatures":[{"sig":"MEYCIQD/2gx/WoK++au+UIWObP/MtRChXgoBptTmP40Yc8IveQIhAJkoIS8LJc+wreqn2vvQVVBAeMNgSnytzbZ0sQFyEqX6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15318},"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":"bdeedf8645be361d7ae26b843720eb853336908a","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"10.2.3","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_6.0.2_1702682327589_0.21453860968819116","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-image-set-function","version":"3.0.0","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-image-set-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-image-set-function/issues"},"dist":{"shasum":"d542c56e284c531d4a8b6cbbae9dfc4d32b24b1a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-3.0.0.tgz","fileCount":8,"integrity":"sha512-hf/Vm7vHwgz47nmAHv4cD0/HoDnS/hVUiSNGjgwFpZ0UwIcz9AXxTQrdHiQ0T6VKBDGGO3Awt6XDUkSWGfri/A==","signatures":[{"sig":"MEQCIGEeCAKCDVtN4IyRdFtZJF29rFQ5YTEDTrdXIfyiBawoAiAnzlVmMdoFpwcmpzfwlqZOj3YXDyXv2nZcQcxg5tV8kQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboHk4CRA9TVsSAnZWagAAQIoQAJw/tSqIA/ruFpyg7KbL\nCtV8w9J1kRIxWpclSbMa4WXM080d2zyN+/FRsTpPYTlg+K0kUSaF/6jdgK28\n1CNwRca5Xi2pvXnRLgaeXZZh9ymTgacdBftoKeWzveQI8AloUYWjRP61dGOD\nydchjcDP98qXq2Ei7zOLLqkis/m49vabfRWqKpIM93cQo4CGID48Ca1e1iyq\nikSj64ICUS44bkgi6K9wfMjx5kEwGbwfFG0N1peBDIApaRyVUBpqJzSeza7y\n8eBH9TUtSpA07H5yyEADuoOl/mStIp0FiqygjdLOLN+WtgsZQGdfE6ESldgf\nXBzW0AQFLAB81/v9KvYevkZQsrgjO4UkFUFdtYVbK68foe4NeNaDh8HCtzvi\nky1ukK/d88jdUpFxJT0r4s1U0BFIWMJCb7fgeOmZw6k+hBYqyNg8ZuTHHQDe\nrxVsETeivVWBgmJ5DHu03GKCAZcECsJw3XD1ooXgJlniJnw0a8EHvX/uJaTc\nHXLnhVp/ygRrZwKB69QbdYlmOJ/WGtruMlBlpMgAHZE1B/QQMBYAynS5agcL\n9Gpx58gcMinLkR30sFRZ94P5JpaXm3lR0Jch1qF74PMQVkQjIp5i0c4SKKJP\nX2e8s2x8Gw/1mRhIidKHQu+Z9anMO+4SWuGlDUb35ecZJQwsiDHlJOuL3Lk6\n+wx4\r\n=6Q2M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=4.0.0"},"gitHead":"5ea52ff0c80293055a3a9691799b9c262e22e893","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-image-set-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_3.0.0_1537243448007_0.007483898310437498","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"postcss-image-set-function","version":"6.0.3","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-image-set-function@6.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"84c5e32cc1085198f2cf4a786028dae8a2632bb2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-6.0.3.tgz","fileCount":7,"integrity":"sha512-i2bXrBYzfbRzFnm+pVuxVePSTCRiNmlfssGI4H0tJQvDue+yywXwUxe68VyzXs7cGtMaH6MCLY6IbCShrSroCw==","signatures":[{"sig":"MEUCIQC6D77mrTBtNxBIFRtQM2hyHDeYjioQ3pzYNLjCVPUtdAIgPb/ODnmrbvvLHJ8loCqn43YXWGbhDj5F+SoDd3EDA5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15041},"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":"cab2e8661ea89024d7b510d295af9687a671aed0","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"10.2.3","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/utilities":"^1.0.0","postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_6.0.3_1708329841036_0.5498530097556011","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-image-set-function","version":"6.0.0","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-image-set-function@6.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a5aba4a805ae903ab8200b584242149c48c481fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-6.0.0.tgz","fileCount":13,"integrity":"sha512-bg58QnJexFpPBU4IGPAugAPKV0FuFtX5rHYNSKVaV91TpHN7iwyEzz1bkIPCiSU5+BUN00e+3fV5KFrwIgRocw==","signatures":[{"sig":"MEYCIQCJDGHyUPv/x9T6Wxfn3LvDXGfpRAdcszZC7FK6NsyRqQIhALd2j3YWfn9O21diJL3Nn5quv6kpvdHhX0p083vqHYYT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18869},"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":"1222ffbdb2efe043795240934fcf8657c180fccc","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"9.5.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_6.0.0_1688372030265_0.9621150331571222","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-image-set-function","version":"6.0.1","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-image-set-function@6.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e2bba0a0536a0c70f63933f7c5df68742e9615ca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-6.0.1.tgz","fileCount":13,"integrity":"sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ==","signatures":[{"sig":"MEQCIAGKlRrYrL7XW5kU4TuFRjD2Yit2Xu2aujkYf6/nxPuLAiB9puGXmACDw4vWw1z5CDtU4hXPpAh/EkTtGY21oMEsQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18841},"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":"c73e36f891ff8c2b267bcd5bc3a303bd2d8a89d0","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"9.8.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"20.5.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_6.0.1_1695053369740_0.035892931835954434","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-image-set-function","description":"Display resolution-dependent images using the image-set() function in CSS","version":"8.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/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-image-set-function#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-image-set-function"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"gitHead":"d831ba32b8fef0526e25110fe6de76b52d29eaae","_id":"postcss-image-set-function@8.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-rEGNkOkNusf4+IuMmfEoIdLuVmvbExGbmG+MIsyV6jR5UaWSoyPcAYHV/PxzVDCmudyF+2Nh/o6Ub2saqUdnuA==","shasum":"15c8992f9fccca49ceb522000673d157d0b938d7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-8.0.0.tgz","fileCount":6,"unpackedSize":11902,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC/w9D78vOB56f4hvWeCwVIGty35FPyezP+Nay531wcVwIhAPrbZHFASMFzWmkN2T+5MjWHZZ/xeN4zOIL0Qxb2ZHFM"}]},"_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-image-set-function_8.0.0_1768375373019_0.09021602557057684"},"_hasShrinkwrap":false},"5.0.0":{"name":"postcss-image-set-function","version":"5.0.0","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@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-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"49697e9d301eabf73fa613d08882731d40fd4aca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-5.0.0.tgz","fileCount":12,"integrity":"sha512-a7q8XdGnU4OMnBqRzVkUBTtuRztD4YIy0b+52OxAcBqvhOU39A4ego9fUpVaqqrQrDOVuXmh/MYwC82aYuJkfQ==","signatures":[{"sig":"MEUCIQCdPHUFSJuzPFypV/exakxW1bKmgnQyTA7MxaZ57XLRiwIgeYyt8c1/R0M7TFyZkePFnavw956+SDinDMW0bf53iJw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz6ASACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrQnw/+M6Ua62DsNStQWJdmE5hnRmDCk9T7omu887WUfn4RyGcrAtkN\r\njtALlr0zfUn9T4gxcZXLQ7pTgtXcgtqBUexbv+VVOzdvViw6Hf/DpGbdcyQ2\r\nTntgteGCmt1gPdHETwzGxdiZiDFFjuTQDZT8pNr4p0hzqoylCBwene5mSKdX\r\ntFgaWxtcUngF64x5o6f6Ev7zXG9HMq/X4/zCijaB0kR/z46FDGJt3Ux2Qu7Q\r\nTkigOoJMrhrXgKO7iv4w+ZIg845JzrTYe0oFWmmDiqVCTDDfWFqU8Rct92RS\r\nx8IIS7bIGbE6cWXbVKztRijA/DImj7oTkx0xIIoM5UAy/I5UzXxuWNIwbD54\r\naeA/rG+liIn27k1Up5eJkPsmRrziutWRRwRaZOWNTPTR/I3EyeLSy1AhbJwJ\r\n3XP661oBSZineFFOezhXPbiV9A1zB2MMJ29pe3m1RJduIKNyomL7Ic7R+P0l\r\n/2+pqCEPEN0FCEsqModl/IrdeRxMbXG4n3I1J3nb9qYi60bNLYwes0avL1nl\r\nEWWx1JG3R8aXk8Z00cu2yizKEMzjdH/sME02d6V3AhqCF6PFE8jE8cl7tIcm\r\n1rE7E1uWsMQAcvNhoBOPRDsaqDRxrPYDdgnjDQHx32+PQBCTZnzC0RdgHrWT\r\n77CHhc/TYEXFB/Rp8QRsoKTRCsZl8E+nLgM=\r\n=/hdo\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":"cc60b184246a9bd3664afe5384e42db789aa3806","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"8.1.2","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_5.0.0_1674551313877_0.6719167964771833","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-image-set-function","version":"5.0.1","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@5.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"115454817f5f4b795066640b646882effd0428af","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-5.0.1.tgz","fileCount":12,"integrity":"sha512-JnmN9Wo7WjlvM7fg00wzC4d/1kOqau+6v6hteLLqEyBjCuzoFZUU0Te3JphDyxc65RtPNsCujDwYbbs6+vYxCQ==","signatures":[{"sig":"MEQCIBmxA7pqVgMqROOyxCC+0r30Kd1IOer5xputI53cDxL6AiB27p7VJ0Xk2uoi94qt58NQuj3+RTTp5uPJHvlKKgpA6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NHPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFnw//Rv1cLxWHM4YdoAQmhC9SCXmBanWUJZG6eQUpbZwPw7URyxzP\r\noiIcST6OZ4OVkNJE2HM8Hd4N92d0iwIIeZiFPFp3GjFkA7zBaVHNY+MobLCL\r\nVZhvqjePDa9VDyLZgOsBOfqLwsPAMHoqM01ayn6RaUKesNji4sO+Op6gVVDU\r\nJ80J2PTKfWUrP/Gxrj/e5pE8JrEH5M1/+/BnijaQTzFU0nq8li5XU8JJCkWt\r\n8tc27WdocjT86bPboAd+1hyy4wkWMOejUFsQm3q8yUmdxIIM/8ZNKW2E+EVt\r\nTk2/IBQDjH/URdml+3pMGCYw10C7OiM5rm0Fnl+gc/wtQCUqG3JEuZ9NJSbJ\r\nuBLz+eNMoEC7Fv/0JWvJJhSwBzsDjHoadQVE0BQeTtqVBiBH9isFNGVsCk+m\r\n3D2vZ1F5DQtnZhlfXENDVVYjNQSkk3z64gWnrwo4plZ4xJ37RI6WBonLbY2w\r\nEAc9plonmJne4nY87YnVy3Kt6CBYhs2YtZ+MxOJTHi/h3bT27bqCJTiVGGUm\r\n4JXwEl/P6K3lMHsMUDuRsu1ESEmciDz1SOf7x8vnsCbyrAX+KiMdA2g8x/AX\r\nEQNd3fY+SV7G4OOifUSGdKepBqqX55W09p8y6rePG8aj4Rsv/4/cGFQJCn+/\r\nlvks78Spp1DA0v6o0ZKYiTryMKDf404soto=\r\n=l/l1\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":"dc46a64e29807416dc5477e1d3781e7ef0a575a6","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"8.18.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_5.0.1_1674891726812_0.7267863095286577","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-image-set-function","version":"5.0.2","keywords":["background","css","image","image-set","negotiation","optimization","postcss","postcss-plugin","resolution","responsive"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@5.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"088e0f535f43e74d6ea8033ff7b0482e2735ea6e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-5.0.2.tgz","fileCount":13,"integrity":"sha512-Sszjwo0ubETX0Fi5MvpYzsONwrsjeabjMoc5YqHvURFItXgIu3HdCjcVuVKGMPGzKRhgaknmdM5uVWInWPJmeg==","signatures":[{"sig":"MEYCIQDKA5LPS5lyTBjW+t19oo8xwUK2RZwOaleihQqBeLPEcAIhAMQuMevM19fp24PhviTq/B50Qb6pb4E614x7sbzSV+2o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4185ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjUA/7BAh3CMidxmKqhfxVrTe+uewQ09c0UtoXY7sjcmzIv0CeObev\r\nJidf4Kx6+C0F6ebIza/IuyVX/zjhotKI8xaNS4veul7mZ4nnGEq1jUAXkJ2L\r\nUuyB5s3cJFuc9QbAIwMFUQnQQxc/nXV78LB60I86f0Rb9X65Iu7COe0a8hql\r\nrIQrVlmPsJdx3reQ6jrUtND+glYLdRqGLX9Uu2RmCpa+XYiqxcSxrTUSf12U\r\nZRW1SdyAkKjeh0wXl1yHK0gfGwAXasTp+UOL9N0RqWbAvC8WdfNd6iQJAq1x\r\nXdAJfRvXAfntLLxGI/q8Uv09cIYW75qdM3tJJAYnMmJarI0XOZOKmSZ/3O4f\r\nv3IK0W7KsYMsEACkl5t1l/53wimzXTjstsVdq+HBRo7ngfgzIyr2F5017ews\r\ny81XX0qbWgNTMX+htcIDrbWOzT+nCYP5VG4h1vKFzRfCDPy76VTRwNSisxXU\r\nDoifbPVlg171wldLu+lYDgt58pJShhD1ttA/I+GxgyaYo0/b40gaiKyCWy4t\r\nCAeaEiGuKxkWP9OACrUmo6PFzW66NXcag7h7MKGbOW7Zclcry8ZP1nE/E6oO\r\nPLRgs0dmOt0hZsY7F7HK6ugykFGrtKTFutosJmmG2Vtt3zkCLQl2XYtllQvn\r\ngg3S0enMOzPUmGfaFjRVUwvs6NjqcjsZyr0=\r\n=K4cB\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":"0a5d5b6b67da0396af83e738e80599d718af4d53","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":"postcssImageSetFunction","humanReadableName":"PostCSS image-set() Function"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-image-set-function"},"_npmVersion":"9.4.1","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_5.0.2_1675845433455_0.10725564860420267","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-image-set-function","version":"3.0.1","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@3.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-image-set-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-image-set-function/issues"},"dist":{"shasum":"28920a2f29945bed4c3198d7df6496d410d3f288","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz","fileCount":8,"integrity":"sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==","signatures":[{"sig":"MEUCIAVm4WI7s414g31PX0wwlG8koup17sR5xpMSkZZ9KAFJAiEAo1I916+uPF3NoexE0h5IOMeIhdtKdlaTht6Uav0Ce0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboSDxCRA9TVsSAnZWagAAMzAP/Rakl7jeTmRM+MeTnJ3b\nqF5yHOix8WSITZRXZs+Sz3fHb2fYz2NqrCWDH+1SxDrdFjGQARHaBXDqx/fF\n4jhsJUBdht9GWnsjgd7uikynQUFXzKoWYBIabDxmDgSISS+I8jv/Dad+MZdG\ne2lI2gLhqIT9MRIiuy2NiqS61X+JPDT70ezdpRYcyqgQOHswa568cL3nq40e\nW5Ba4xjxSOnZkw1WXbaq8oIE2H8s21dnJVjB4knGn911GDinwfjz0V3J/KrI\nyuq+a2fjygDxFUdDi7GlOH2h/sE4n6rygXsScJ9VffsV5EIUY987Pf09G8LH\nOHJ1kZv+5rLFit3HD/wvyIQKb5kR9L2KXwKzF97DjsX45Ob+dwc44iJfoAsS\np0RHDBMCqlvQ5Qb8qurjCdtLerB+MB/PDO8968xf/7edpYI4jN/HMjfqOWgm\nQluPrZDVBgolNMazz9/9W8mVOo7yrWMvlA68YpJd8neCDXa0GtEKmz/Ogwz7\nprXopteEviDDSPNyN5znNoxfEeDXi5Q5bvKf7k9K6Re8FzHCvjxqirXsyjDX\n0T9v/5uyETvsfquIrVfZpHkb59jANWym45BFP39UBcXmZxqzjX8fuUpdp61g\nBzT0Am5bD9ApWYvmOwJWPEQ8xPWltyksXggxfZXz2GbT+lD2G4PeEO9S5SnJ\nYaI5\r\n=73Hu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"2bdb8c42d011a4fe0becd4fc060a25ae4a1195fb","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-image-set-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_3.0.1_1537286384324_0.8593911552716658","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-image-set-function","version":"1.0.0","keywords":["postcss","css","postcss-plugin","image-set","background","image","responsive","resolution","negotiation","optimization"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-image-set-function@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-image-set-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-image-set-function/issues"},"dist":{"shasum":"27b551274bad490a3ebf47c4f09f25e650d6ceb9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-image-set-function/-/postcss-image-set-function-1.0.0.tgz","fileCount":6,"integrity":"sha512-ta6gz0QT6vSsxxBb9mUNCTml4qNSMNKP/15Goa0wYoXnqrnVxqv+PIbAIGdWAk+HUhYB+F3xytV+zTdcETa6cA==","signatures":[{"sig":"MEQCIFLpjQXVY1wIbh7vh5fGhTkPLUi7J9tnFBcq6Yn9ca+aAiBZsv3zsDxx0DbRWu0oU31zYg1v9s/fLlci69phEet+uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8BZhCRA9TVsSAnZWagAAh5QP/0Bv3NP8AsFxRSGwYhf/\nCmNoSdP83L0hyvVQVB9LbFWjqL0ehOJHg0oZAYojUlglpci5mobRuOeqlD9S\nho6swnxDZvt8zrLVV4aUNBpSzBwEVDViZuUWDbpQRRpzcWmmxzKnKWd6fMxi\nlNMkqT24BxxLzkUiXL0f+AW++bW1s/BbgozfNQbS6GlQBbggDY3uxi2To4mK\ny3nLy3E2AvmxpZjqtI0dX4Wwf5wKGHKP6dRHSFVNJiJRi3AelQPT7fAaq8JW\negA1u5VdFVCEiR5QsTiLaMlq3jaJgUAZ+F28+Yd5dtEDBVsBGz6XNKwptzh4\nsRqhyMH4B7EU2mHJ99o83Ijz3bkY5krnItyYl7ViwLIkCKd8XxaLiIQzKaeD\npTGvASnDwo6FDvCCw5ONUN7vD2BkiIxmcCY8b0gwkbJWf68q8UXPt71ERIUL\n4Il9nhek1NifbPgB0/shFYkVi82fhYYRv0gS853247HkIGteTFa0+MHf364j\nkN91U+Bmhk1n11cj/T4Wlx6IH2vF20af+pRAD/JwJfpBA1O3io6NysUT/KE8\nEGJTuqOJd7+6Fi4OvvR9OZg3K+MXs77YHujLksdCk/7VpwEVd/QDPZP+YU9j\nCakfQ+kJROwIhEkjwJM3DtKIlBcCQg2TCfDGbLa5C1YaCAHPiO1QB/0CneSf\nfcv+\r\n=gRhq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"f9436809c6859b035bc619e4862c6255b89524d0","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-image-set-function.git","type":"git"},"_npmVersion":"6.0.0","description":"Display resolution-dependent images using the image-set() function in CSS","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-image-set-function_1.0.0_1525683807982_0.4923207712348887","host":"s3://npm-registry-packages"}}},"name":"postcss-image-set-function","time":{"2.0.0":"2018-05-08T00:42:42.549Z","created":"2018-05-07T09:03:27.982Z","7.0.0":"2024-08-03T21:37:07.966Z","4.0.2":"2021-11-19T08:47:27.472Z","4.0.3":"2021-12-13T09:39:53.911Z","4.0.0":"2021-09-17T13:53:27.332Z","4.0.1":"2021-11-18T18:12:59.241Z","4.0.6":"2022-02-05T17:12:03.860Z","4.0.7":"2022-07-08T16:52:58.443Z","4.0.4":"2022-01-02T15:34:02.714Z","4.0.5":"2022-01-31T07:54:51.773Z","6.0.2":"2023-12-15T23:18:47.833Z","3.0.0":"2018-09-18T04:04:08.129Z","6.0.3":"2024-02-19T08:04:01.251Z","6.0.0":"2023-07-03T08:13:50.446Z","6.0.1":"2023-09-18T16:09:29.969Z","8.0.0":"2026-01-14T07:22:53.175Z","modified":"2026-02-16T13:28:13.836Z","5.0.0":"2023-01-24T09:08:34.042Z","5.0.1":"2023-01-28T07:42:07.011Z","5.0.2":"2023-02-08T08:37:13.642Z","3.0.1":"2018-09-18T15:59:44.449Z","1.0.0":"2018-05-07T09:03:28.070Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme"}