{"_id":"postcss-custom-media","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"dist-tags":{"latest":"12.0.1"},"description":"Use Custom Media Queries in CSS","readme":"# PostCSS Custom Media [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][PostCSS]\n\n`npm install postcss-custom-media --save-dev`\n\n[PostCSS Custom Media] lets you define `@custom-media` in CSS following the [Custom Media Specification].\n\n```css\n@custom-media --small-viewport (max-width: 30em);\n\n@media (--small-viewport) {\n\t/* styles for small viewport */\n}\n\n/* becomes */\n\n@media (max-width: 30em) {\n\t/* styles for small viewport */\n}\n```\n\n## `true` and `false`\n\nWith `@custom-media` you can use the constants `true` and `false`.\nThese are especially handy when debugging.\n\nIf you are unsure how your page is affected when a certain media query matches or not you can use these, to quickly toggle the results.\nThis plugin downgrades these queries to something that works in all browsers.\n\nQuickly check the result as if the query matches:\n\n```css\n@custom-media --small-viewport true;\n\n@media (--small-viewport) {\n\t/* styles for small viewport */\n}\n\n/* becomes */\n\n@media (max-color:2147477350) {\n\t/* styles for small viewport */\n}\n```\n\nQuickly check the result as if the query does not match:\n\n```css\n@custom-media --small-viewport false;\n\n@media (--small-viewport) {\n\t/* styles for small viewport */\n}\n\n/* becomes */\n\n@media (color:2147477350) {\n\t/* styles for small viewport */\n}\n```\n\n## logical evaluation of complex media queries\n\nIt is impossible to accurately and correctly resolve complex `@custom-media` queries\nas these depend on the browser the queries will eventually run in.\n\n_Some of these queries will have only one possible outcome but we have to account for all possible queries in this plugin._\n\n> [!NOTE]\n> When handling complex media queries you will see that your CSS is doubled for each level of complexity.<br>\n> GZIP works great to de-dupe this but having a lot of complex media queries will have a performance impact.\n\nAn example of a very complex (and artificial) use-case :\n\n```css\n\n@custom-media --a-complex-query tty and (min-width: 300px);\n\n@media not screen and ((not (--a-complex-query)) or (color)) {\n\t/* Your CSS */\n}\n\n/* becomes */\n\n\n@media tty and (min-width: 300px) {\n@media not screen and ((not (max-color:2147477350)) or (color)) {\n\t/* Your CSS */\n}\n}\n@media not tty,not all and (min-width: 300px) {\n@media not screen and ((not (color:2147477350)) or (color)) {\n\t/* Your CSS */\n}\n}\n```\n\n## Usage\n\nAdd [PostCSS Custom Media] to your project:\n\n```bash\nnpm install postcss postcss-custom-media --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssCustomMedia = require('postcss-custom-media');\n\npostcss([\n\tpostcssCustomMedia(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n\n\n## Options\n\n### preserve\n\nThe `preserve` option determines whether the original notation\nis preserved. By default, it is not preserved.\n\n```js\npostcssCustomMedia({ preserve: true })\n```\n\n```css\n@custom-media --small-viewport (max-width: 30em);\n\n@media (--small-viewport) {\n\t/* styles for small viewport */\n}\n\n/* becomes */\n\n@custom-media --small-viewport (max-width: 30em);\n\n@media (max-width: 30em) {\n\t/* styles for small viewport */\n}\n\n@media (--small-viewport) {\n\t/* styles for small viewport */\n}\n```\n\n## Modular CSS Processing\n\nIf you're using Modular CSS such as, CSS Modules, `postcss-loader` or `vanilla-extract` to name a few, you'll probably \nnotice that custom media queries are not being resolved. This happens because each file is processed separately so \nunless you import the custom media query definitions in each file, they won't be resolved.\n\nTo overcome this, we recommend using the [PostCSS Global Data](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-global-data#readme)\nplugin which allows you to pass a list of files that will be globally available. The plugin won't inject any extra code\nin the output but will provide the context needed to resolve custom media queries.\n\nFor it to run it needs to be placed before the [PostCSS Custom Media] plugin.\n\n```js\nconst postcss = require('postcss');\nconst postcssCustomMedia = require('postcss-custom-media');\nconst postcssGlobalData = require('@csstools/postcss-global-data');\n\npostcss([\n\tpostcssGlobalData({\n\t\tfiles: [\n\t\t\t'path/to/your/custom-media-queries.css'\n\t\t]\n\t}),\n\tpostcssCustomMedia(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#custom-media-queries\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-custom-media\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Custom Media]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media\n[Custom Media Specification]: https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media\n","repository":{"type":"git","directory":"plugins/postcss-custom-media","url":"git+https://github.com/csstools/postcss-plugins.git"},"users":{"asaupup":true,"xiechao06":true,"nuwaio":true},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT","versions":{"9.0.0":{"name":"postcss-custom-media","version":"9.0.0","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e1ae085320eb1bfb197648c2ca785a9d5198cac8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.0.0.tgz","fileCount":15,"integrity":"sha512-HZvWFVMRRkJ92N2Typx8AV9ecQKjkLALd3uHJvVoq41GWdKqiB3GHWrzSmPiGtNWdrPbZIXs5RkNjkSHmCIfqA==","signatures":[{"sig":"MEUCIF1FyBkAXXj0ih1+lypMPm3MD6tlmUNRyqfW2omJ6NeJAiEAj9OYARmzGHpCWKv8Ul6GPF4Sue7N/ojovgyhNLOIr1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcg9XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNXw/+JaQfpDnTFZGdHfxoCUuwuN7le3Ax87dMKiADCSkDgO2SSPcb\r\nQox7TQ7/sB1dvwrbGYYOjlDMjz+EwXZMvU2o1X6loQZ2avghXSI7DIUOVfam\r\n/QZtBX4IytXRCk8XpyRk1THgd8HmRHC5qozsXtA7sKWRN7tUD57LvTgRiqhE\r\noYCqiUyD7SOPuTFiEMwy62VagDrgL1qwAlR2osj0AV2MvDNtC71Nco+99JW4\r\nTDEF6tJr0SE0R9WlG698jho1cT99+lR0MLZtmpT+WCJSjzgCY3OhkfCqhPO/\r\n7ZxXBmVctvCEsC5C+hvBJQxetZJTjYsQV6vv/VWAFdyHHy2su4pLpqT8HhOS\r\npwCZIPL0TneICl1s5LZJ5REu39i19nUaMyUH9drC6jzEniCHIFUKfOK7Srkk\r\n7Y/D6R3hDtE7xOoOr+3cvrkGp9GyytsqgWjXIZeIkXl6Q+sOpliAYEOVGHZ4\r\nibdL5HhXDi/13LcO+DW5RZVTJY8oZytQjf7SK6uyRHVttz6XYTZtnsybtO8b\r\ntVWm9zwJI6c5kYSpPdyJnkJsQt39mb+qLrHlm5zISN2a4K7PZ6XIWYusKHMe\r\niW3vth/8DgjqS+XjCzlLf9oa5mGPG4R1ed3oBcv+hEPHpM0qaXpnSGjr2aRH\r\nGegjK1MyXZdc4hewpKpnjo1MtiCSwOYfbMM=\r\n=ntup\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":"0062474733aedcd0f7393e27f5881d846208ece9","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.1.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"@csstools/css-tokenizer":"^1.0.0","@csstools/css-parser-algorithms":"^1.0.0","@csstools/media-query-list-parser":"^1.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.0.0_1668419415392_0.8076962491764141","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-custom-media","version":"9.0.1","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.0.1","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b59ecc762cf5ba4b540434e0043f5b3ce8c80bce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.0.1.tgz","fileCount":15,"integrity":"sha512-CimS72gZZ0V4WPFg7t7EqFVLxJ0mqwAJSsuk+LNHSo9ApC7d/SuOr65sKrUY/D8locOh+3s4yO7IdqQ9cRSR7Q==","signatures":[{"sig":"MEYCIQDTFjWeix8ZpnHX/4yiEiJwQn21M9hbAqkhcwq48uXk2QIhAJ6ZOiNA5qz0advb3ODZwzbIwuyd9gz2QCEhb46F+HVS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjeRseACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJyw/7ByafPazV6G3+UotJGoYSfoZCqlRE7R2jEMGo0HxdEHFw7pPM\r\n5jLcxBvz2g/XWNfXyb7m/NQlfBy7Tsuc26L5mirSE22/J9/MHGv0uwphwxV6\r\nAJnVj6HAu81rf5JwIFddM7AAlnjvc3cbFcnpikHwqh/FvUaFSF8JmF1YkSJi\r\njyTE4APybpq8tgvDGVWF011HEiOm+lPmQFRSyWauSP0RHUYCjp+5N/1bNtie\r\nj4RS2s3EP8aneWTdaCc0Hge7M0cKVqHJv6sugtAfLMcJPCkMRW5ms4tCer2X\r\nboVRp2TtZjgJphoUnghBMrN02xWe1LciQ/kMbNu4WG7DoQWr+JHC49nDf0Nz\r\nErw71YVqGHiqQAl8ibvI38dUPsXiAANvH5zYIMmRkdQEPjRrzoMDqNklV7gC\r\nVR2CtX38v4ULXamRhvnTKf+G7tRqY9C9tTX2zEWZwvb6O7ERWCIL9Wf0YoPY\r\nuFdaQx/1NLvONx98vk2RET1zM7Gvu1Lv0zf62+KujtAvbXxwzd+6O3yxStGK\r\nAQ2e9d1xA+xMnPTK9LcJbs7b0YQLn945hwAcs8qaWvNQfs6+VXo3xPk3XjjG\r\nqai9JGhkTlcHcxPmdA4voPBYvwuHDAnSGkXx40OWwHq/8cvoTqT3YfZnfap4\r\nhhTidUlF4krbh8xZMUH+kEBUOIeqVeG38qo=\r\n=gEhz\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":"a38dd6ff4fa96b0b11b6cf64d53feb5c5d49a9fd","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.1.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"@csstools/css-tokenizer":"^1.0.0","@csstools/css-parser-algorithms":"^1.0.0","@csstools/media-query-list-parser":"^1.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.0.1_1668881182125_0.7169366622643019","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"postcss-custom-media","version":"4.1.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@4.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"b99be5ede95b72ed1e89dc18a138ec5c63df4bee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-4.1.0.tgz","integrity":"sha512-XHKKRftuIIGdMdG122Y+c7j082BF/x+mfJVxaCZ0A+/HwZojPvMUEh3oIhCWoIFrXoO/kfNYnZVMb6+LeVg/QA==","signatures":[{"sig":"MEUCIQDkZLrOcUql6XgWB/xRzqhtj3sBAMHvz5ZHJaVPnVYLBwIgLKQ4995BWiGjZkHE4bVsk8KSBjCBBSMKNUBlaMgD5EY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"b99be5ede95b72ed1e89dc18a138ec5c63df4bee","gitHead":"7c1c36a18b70b2691f4ca86fadac5ccccbedc09d","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.11.3","description":" PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"2.3.1","dependencies":{"postcss":"^4.1.4"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.23.0"}},"8.0.2":{"name":"postcss-custom-media","version":"8.0.2","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@8.0.2","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c8f9637edf45fef761b014c024cee013f80529ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz","fileCount":6,"integrity":"sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==","signatures":[{"sig":"MEUCIQCchIlKVIbCgNAhupStbL4OMH1jvRxBrJac7ZxhpVVO6gIgNSSbcBwdSUPr++lsz/3BEmU6YWCSq77SoVKTr/kBS5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimwgxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPcxAAkNJehUmbg1bF98Bxw9A5BQ3JJv8FCp22tpK03mqjC17AqAyJ\r\ndsLRaKSqSkLr3pwf4uQuYrU3QWSpOhtW6rbgn4Bq9mRnidKwWXX0qRj1eRjq\r\ns5QM4fSkwN509BMDRmblej/GZrRGV3pLK6k+bRt9NmmHdD5ExJmOIowk0vUH\r\n9ay6U3QBRfEsNg4MHFkyD4WH6p6H0MzuJq6GgaMRT/HhCI5ayDKk96aimMg0\r\nGcxSHRiAr9fhOaAwkd6jd5TdJEHgxQaUAdrBMjjhxnOpqsWYcO5rjDh1+QQq\r\nzfz6Ht5SKez/sbNle456QzX0ssja0tftWMbniTvTfcGD7TVz2WyE3s1MrCSz\r\n+TuSbxfSW3GxYREJKctcUQ84AiQY2If3VTN7agxCaGhuMPLzAYeeb7BDUajc\r\nskFMqk1oER+/yPciZ7O2XH4BYPV3UbqYhX2UpjxOuLUcxkI0klL+ZUJeEPof\r\nFa3fDqmyYH90Tog0i2fijxoKepZ392gZWbjAtRPVooyGfmORWrcEYxmwTgSD\r\nNDGa1NMfdr0lr/3D1bpoN9WRqRShZIR5qWzL6HTxEi3Wxj4Vfy+trPmrd2xE\r\nhtMYfOjovDjIBNVjYTNsbaYCksdj8/O7iw8oH9s88ul6mg3vcwSfXMN6a8VQ\r\nav80UN9Lpv0YAAQyZ1FifAqqyNhc4MOtIvg=\r\n=BsjL\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":"d769df84c49cfc130f4f6af2d7a147b8e3543828","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.cjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.cjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.1.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_8.0.2_1654327345278_0.06425783319805833","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-custom-media","version":"8.0.0","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@8.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"1be6aff8be7dc9bf1fe014bde3b71b92bb4552f1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-8.0.0.tgz","fileCount":6,"integrity":"sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g==","signatures":[{"sig":"MEUCIB33A2D4g1GLf0I9rmqntpdhQbgMN5D0hzKJfKXN6ha2AiEA2i1PX3e4bGRViZsRPIwF1tw8FhqOBslF7E+iZkyyTjA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43318,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/VsbCRA9TVsSAnZWagAAsBAQAJfwr7zCy6vbvV0l0CX3\n5HgZ2+WBZo0YXO/l0/5EF1sNt8CfupKrEMHaaytR0WTCJ7oM7HwjT2p+HO7a\njmrYjfHJpQdc7e5o0C+PWrawMUHnkKnnlirp9aAD8Y8JSGaXCt9XERwx+LPb\nnwF1Spug7g2R6xChY70KIph5GqL8FmxN6Wy75y4F244YocDQQubnorWuGTFS\nYkr0UjuzoEE2Z/2+D/gibzmcyDb9B4oPv/aG5RknXcfwpcgjLZoocgEp0ehk\n0emMT785J1+VhVsqUbRiJfS0iQvVkXIs4+xgQIiStA1a9Yue1C2ESdrF6zgI\nd69HAHsJqlinjHESnM7B2d6v25ZXZ6he3cPS3FD9FkRgFaZvpfVUxJmkn+jV\noocmMD2fKQhmvQwLcEAI9qlCIEyiSzE7JhmYkht31mOwOec0ImkpOwq9p7PC\nWYTzyGFRYpZsRLmPmYsoHcZw3nvbYwsTNwD3fLNOoEJZ0v6s+8m4qZUIMpVb\nVx5Yy3cgUZqKI0tgmARAlZAs1XwkZpW82PYGlUjlyxW4c7ta4wQWfJSIe0U+\nsM1ewe0DpRuhppXqRkGWBMQIPsHI9v+zbjsF9133uJLqMSfUESCsxULDPWDR\nREqPwEjhoMnTRbgeGxEleuGSW50K5B21wRbEKhhHYt0D7grkaVqvh3XPmJ+6\nrNPD\r\n=9QC7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=10.0.0"},"gitHead":"24234a28bede02a106132dbe2d008127d5db0eaf","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.14.9","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"14.15.3","eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"parser":"babel-eslint","extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2018,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.10.0","rollup":"^2.28.2","postcss":"^8.1.0","pre-commit":"^1.2.2","@babel/core":"^7.11.6","babel-eslint":"^10.1.0","postcss-tape":"^6.0.0","@babel/preset-env":"^7.11.5","@rollup/plugin-babel":"^5.2.1","@babel/plugin-syntax-dynamic-import":"^7.8.3"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_8.0.0_1610439451042_0.6121047466380221","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-custom-media","version":"8.0.1","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@8.0.1","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d9e36aaab0b25b666bf591092cb42d87cd16d6ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-8.0.1.tgz","fileCount":6,"integrity":"sha512-ZhBAYOOOeEV9eosUARv67HAhwM3PsKaWDxXs31usUoBd78VUiXZGgtbvGM1IFWgTaW2S5oYOJ2iD4dwSdHzfiQ==","signatures":[{"sig":"MEUCIQC0I+LHaSbzTAs+okY6MAbBmh4rxiV1tob12EUa/Q9ZfAIgMrRxmlfnfttiBfC4fsa42IkqhnkCcBmzYf+LiKiFtSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24767,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimZrOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrm2w//QQApNbECi1MpsaVck/JJwkCQXr/KMEfOQ0D+IBfKWOad5ZWi\r\nlAGrV4mm0b3itc/l7UTVbbJqnJFErxx3I8ApkZH6InMxw/3E/V6vSdy0WtoI\r\nJF0CKd+L0q0BD2/z2q86r5YqPmPk1117mSZEu6ErsMS6eZN5YhekJBiG5sj4\r\neLk8X7SrwHLN/JWIALCmPBJX2vHxZZWMpPNHoy0RSb78hwxCUBuyk14IU8kK\r\n9mZO+vFSxCc1eERMKDMoGFPCONWvwYcxtvL0bpl/BTVomR5R6RJ3sRpcbB87\r\nQ9SSodq/igtfHBNh3qyiByvAqqDIplNen8MnA9b4005HiUcFS2OVAnz4hvz7\r\n9ntswHNSxez+3FAz2PSDO3k+kyfjgfBeoFwautOQadEidyh7xTbKhRTvSBIm\r\nWjFTsOIrKQz02EXAC2hDutrIXeMZ217qssIAmQZ1d2wtD1OvxQMKCFhmrI73\r\n5RQ+LV4YBgFkUpBuUdNkwwaKzsSju+W1sJ7f1gw2U0J1e34YkeIe8PhU1KCH\r\noTm5GP2bfGT3arifNOe8ceEZcOWwVDNyGbky0T6/ylPs2uulVQ+0u8uIViTc\r\ng1wtz8xt5Mpf+IDKNm+uXT3sy9cQp4WJYsSwHL/rddyExsbAAxEmHvchuBE0\r\nqTG5XhUs0uudunJNfraSQ/qxUqb+kEjMdXE=\r\n=efEk\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":"f25fef2904c78b2ccd3e3e9adfbf21887b4fd382","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.cjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.cjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.1.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss-value-parser":"^4.2.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_8.0.1_1654233805847_0.5384523387017843","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-custom-media","version":"7.0.1","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"69d04a8a133f636661bd06092c3158e7e9e682cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.1.tgz","fileCount":6,"integrity":"sha512-lzZ2jEoiCd7qo/wWas9LxcYla29yatt5Wxe9DID/TbZMt1C6OhkHJEm1hbzuvqLUSiaBpTDBwlUZB2Hp6grFQw==","signatures":[{"sig":"MEUCIQDNXqDx5amVQEdYWg6XoSHapeMJcQWC+LrhCtk+KXAaXAIgeM3H7f46MniwO437pT3wR3FfKHHi7nD4EUGDoyLc2FQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm0DmCRA9TVsSAnZWagAAAnsP/RF+WLM4o/ohIMVeplot\nNsLdeSqilfDkGg9GvNl3f52q0JESXbNlJH6fQqoI1KkvDdA5jBNkXuvDidS3\n/oqkURWdZh6h18b6NBQeNu1xW56Np7WRQLpnl6XTMcUgr3dp6hzwlzr0i9sV\nuyjh3iwRUcIMj/IonTmWaAPrZ0r35kU5J6gHBDOtMukGV0ulJq5/b+CEhrEQ\nLUWoi7+x7x5VjyHleji5E5OToovDFs38WWEUmXZBhic8jDQ1dwxrUWQ72YEB\nXuDQQdoeYQ30Qx+6h23tyDvhR4WtIcodvdoEfFh3lB6/L3ZKFWOwoJhxtb1J\nIJbor+34JtQsq0eMMIoP3BVLh/ZFgJyvnaC6ZnPHEJK69sjI96p3/du9TaQO\nW1e51qXbjHqIgBGT141SfjgOocGzGqHXd9L25lMVpkjBY5somGHPJGy4cto8\nW7LOsIXi2jlnk9tGuDyH0C839GJFULO34OMmp9bHKKnBqIlTq2SW5y5CAhJP\n6JQOTQ4Am1jXBjwltQ04G8QCzAxGUOrFcI3hpkfWIkb3d0gkHBGfYIyLQOeg\nKS1fPz9Yl6BCBh7v3VLmqIcNsdOFdn/KHg8SfdfjtFs13FJCaN8tV2vFvHxw\nUmDN1Hn4ibtx3c7z8Jq4KFphcTJSdLKoirNdnDKaACbYGkrVQc960B+vkf/9\ncC87\r\n=wQVz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"b59e59a14e2996714ea1223699bd46a824f0549a","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.5.0","rollup":"^0.65.2","pre-commit":"^1.2.2","@babel/core":"^7.0.1","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.1_1536901349777_0.9041231488674324","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"postcss-custom-media","version":"7.0.2","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"e55fcd3a5ffe0d42c1cf99fe4a716a24f5228248","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.2.tgz","fileCount":6,"integrity":"sha512-93phy46hTx5pX5QVKnSf9kJHyu78A+wc98bw7tT1sJzmZrHSSJb4mtZvoTru6vW1guFjAHHbLaNhkS3xAwjlFQ==","signatures":[{"sig":"MEQCICnhiKGEdE2DI70f1v20+J1vF+uYW8637ENqPl+fZMdAAiBJqzgIPmJovcX4Cb0LnH1xrfnA7XtA8/tiPpVH2c1a5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnV98CRA9TVsSAnZWagAAVaYP/0FSkOaQxEWLDzX5aSN0\nrRHFUxYhIj2E1pXlCKKEivzhhsXDrYpKsYEKr7+pehd0k8Ogp8APSqNvywVy\nrHVMDJA1AXKnBPOIAc0sQwP813mLzTPc4P1cZw3esy6s7N1F22VC5LAVm3wa\nuv9dp86oWoVNVJouPTt2/LrxEVcN2Xo1pc0Y7WxkmZg7Nf7G4TFY56f5itoU\nKz7IjC02S6DjNiaQyUYskc+dUynBIO8xh41noviCc/KxaS2xZC/pGYVkjS2p\nqpvzaxztpI9lmp8ZQNEbisUqS7u/0susbNYMl8vLH3TN0keNBrlzfeY6IAV6\n8zHeswmUbsX1wSzgBcNDTtsoo/0LCfxu5H9W1ZyFNpu0E5y1Qg7IG5jUxBUS\nP0NhS9453g3XIzJ6+eIYzZrS7K3nbcQzavJDgcnldVglqeXqS9jgp7XDaCdr\n5ox0Kj4cyG1Tq3aC2R7tTaoP17NIJxq7CXmirxrJcHcnba9HjEuMn00++N/q\nnbFcZast3/iW40sk+hgbEYyqAWjPXVp3Gx4rwr3whKu6vI0bsdHDBSG6OX+f\niZCsAUmY0kjL0R6Zgu2Q0nuXAxTReL6FCnsqGuXyerSublxe+juHRPXc14lK\nfJDAm8ZWuCXOGLE7hQiAJaoBQgbxqJzH8kElIFFUx3j9rN+N81MLCodd+Vai\nNdJ0\r\n=eyZ1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"407c33cd8821a869db9dc6fac3d99681ee74a1ef","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.65.2","pre-commit":"^1.2.2","@babel/core":"^7.0.1","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.2_1537040251558_0.831988596678457","host":"s3://npm-registry-packages"}},"7.0.3":{"name":"postcss-custom-media","version":"7.0.3","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.3","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"da0a3aa24831fcaa045e1231a517a15e0dcdfa1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.3.tgz","fileCount":6,"integrity":"sha512-uRVuiQh6cdlxAxEIZFHYg/hsWajSc9Ynm9D3DJBRW0s/Sw7n1rdnllfdzHRkQU7qM3X6yZoe2Ra864qZUR6WMA==","signatures":[{"sig":"MEUCIQDgFpbBgwDwB/M46sS1s+wLLf02ZlD+dvnPQ3Kgprvo3QIgIBbIhuxAZyyHo9GMu0ll2ml88Cgy2ulROPBi4XMIvfQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpAJdCRA9TVsSAnZWagAAuKwP/3M2PWAiDm1LpGnY+FfO\nFOEsmss11u/UEfqPgJSdzBGPFLrXOD94bV+Uq8WB8w5yranUODH5nS3xz+wP\nK58+6xr9tL3cNkSmRfKNvK6QSsSiie7cX9f1mYlZ+sir9ceQ8T7W9w7PhPRc\nyzfdeuSU0ufCXrcO37kikj3VFszOYCobBvIMfbbaIxlo1STFuvi1IdOhMAJj\nUkv9zX7KLyeqW57M8kbAQ5ZG2vRKtTSrgwXgyqoxKniCt9DVrvWiVcJHpSL4\nTc4yzgr3liBgsmGa6AV1CcqdwJdlWj1KAcn5UGs9c4ffBifVMl2QecsXisxk\njCfxOZntm/7Y/iX4c83jqCPB0KiWkrYa61svgy5J1MQuJd6zxYUzDRDgw1/q\n5R2z71gh/jV7YiD3yuXUGemEu84S7q51PQr0/GqerrVjwAihkhk2Sth9LFx6\nXjljA54f2+ZAytQ02zKzo9tH8MmeKD7dfMmHn5JTscnFe7wsfuw7Wgexafri\nYr0oXiCBv9RFf/eRYKyplzg1pLl+8iyUUdHwuxYT+/F/mV1k8PXhvmYYdIs7\nVsE+Yo2lvNYtZ0PIVb/E63ZA2WmxMeSw7OpPvUIO9AmOOWnFTDVWBarBEuLw\nNPKZfyBvm5x3xdy71JhFRCgIwXn+oG3U5AApXBqmaBTbCEvs4lZfCyJqF8GZ\neMeT\r\n=+0hJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"39a25e05f39b5cc5f879b8e828ee8ced197750a9","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.1","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.3_1537475164112_0.751451692389844","host":"s3://npm-registry-packages"}},"7.0.4":{"name":"postcss-custom-media","version":"7.0.4","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.4","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"98e593c4a9a38fefee848434131fa16d316ee165","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.4.tgz","fileCount":6,"integrity":"sha512-DY0Vdc4wW7EN1CNzV7FJCA+B9p0u9RjnPtGcFoHxr824/Ce76ff9t20jrfvijRHwlS14Ca4/MjVTuC/wMYWVcw==","signatures":[{"sig":"MEQCIAEVNWXEt6FowkI45Znq2izpb0HuE1GUjIKhbdivZQT/AiAJOiqjVlnmLE7JbXC5gGDn33ShYI+Nf6Qru7xuhO35yA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqF6ICRA9TVsSAnZWagAA2pEP/3sATYyqgvMFSLfS7gG9\nOgS6RqzjogtE5u+4suT9Mjmw20aJ0PI+Lu8Zhc53hq3YSTM0HOGdvl19wREI\nJf6RUI6rZkJup3wyLH7yVwhqCvqxEiVC1O/D3bfB0HvH+DxjUjMM3/bON3wR\n0fxSjKVvdOBkueR/spYWb6ro3L3PhcuGIit6zg9dLX2GU1fW9UivL6p0YN7z\nV3iNYJQwWwiEb5znCU8waxaiG6gsWLPS0bKP4uCEsIsYuaTwxYoFkEs8EvmW\nE0UJ/KKE2pzwDSxX1r3ScvhZRSD72nAjUbu9XqL6W3NPRamR7WgqKQvmipWI\n3ZLs3qmDLJMCKBHJfoIJOFNmX6nn25aaNHZxqjUUYc3qQWQvDlvIigBKnOiF\nC84oBw3PF+NpCCbghGA8EnUQIV7OUmY5m32wkxlceTX7tbq9pzEQ3shiNeiu\nqIJy9ZnHnbgj/vpydrVhvTGs6P4UW2+C3AlKPovKD5Buh6MlV+MJPNAUALJK\n+FwZ9KnrXaJ+CtPCOucEDJmng1q1emxP6EnR5XKw9B2bIKAo0y48MA0u4Rnw\n43ngi8gBNrmnrJiaXDU3F1Ft6xwb/jvO+P/3X+XNLSmnHnXT/3/3jfBI4HQ1\n5j30Ql54K8M6Rd5Ig9lohxLEHdu6OlBJo+JilGpegjZB82JJckW04Pq24EzO\nTK6A\r\n=TKKu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"75c2768ad997711e5020b2b296dea1398c8ce36a","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.4_1537760903385_0.8299912034448484","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-custom-media","version":"7.0.0","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"dc494c1bf69fe58649b0db12a61566b386cd3d3e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.0.tgz","fileCount":6,"integrity":"sha512-RBNkC6HWkJaqrUxFQJT8y7+25I5Sm62j16FVlokYCtdN6eTmIRGznqFh+/awT4ZIxCVXSOMqEsSgQRC5uTw/cw==","signatures":[{"sig":"MEQCIEhDVQ4TqQ5p1KatQa24yW9jLzkM3uTrgcMtJWMSySbOAiBHQqLVn5RJuE++mFClk3hhKmBTMMgwgrkEinQ0LieVeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53665,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmxC+CRA9TVsSAnZWagAAPckP/iqOb7lXxM4HSM2dbQQ5\nkWxaOhTbizLMsJBmD3z8FBS20jJ7pG5kUgcsbCsJciIVVkLLkNLwCQZRufwV\nbBD+kQg6HB1oCZCGNym+hY26AzvXbg8X0nHWqdwqW4YnH4oTyrnqtj5hfi0f\ncuuuEZzL3z2MfXcahXKyODM3d4SEtsqsD6yJeH3QKR0mN2zJuxP9t2Nf5KiH\n+9FWEJg4xtqvVpgaipbvrUQh//FM/P+InDOAWGL9Ux5L+HWAvMB7xhQHgStm\n/uaawMaNEcOM2gpCpCHjXtQdKHio1XndYJJUKCTGQtsEBoiP7sqcJlN2/e3n\nK1WzpCvdTWSHeGBFkZnFhVX17+cq5DRjECgc4owZ8B1zRbtGBEGr/kt1gCH3\nkQTQ780X30nPUeFsz9jEsJVzZJvVooJI3xMybg08gFo94dyfQJzJAnNvKypd\ndsQp29sOe9aXgDOuzQNolbhWEuFedEXRlk68s8GERCR2k8Jdio4bPonVZ7LA\nNl5MFf+N0P140z6DCxGIqTf0HUU/zeF5FxcFz77aUK4BLDxb+w9l1x4MPJG1\nIVDv0dNiSrzKRBw49VN3OiNuGID+B7vEteO0NkWYo7LevhPXY0/RaSRRSTYk\nxA3ElfbKAiywcQoIvgYxItHa+tOdq3iLOz0KCKihGS+yBd62yA3MqrUVwL/5\nrsxZ\r\n=XC+S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"b7806565adab9093eb3f9ea67ad85d659ab88373","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.5.0","rollup":"^0.65.2","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.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.0_1536889021762_0.8001611666725861","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"postcss-custom-media","version":"1.3.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@1.3.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"34e2761b660a1698dfe42336db4481968d385e35","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.3.0.tgz","integrity":"sha512-nnfafeSCwMWUMMhykhjSlkKvNR/8LJZKfXWqDsUlgTXrorEjAOpzf494Je8eelQg11VS0OuwcMV5XZSJgXN6SQ==","signatures":[{"sig":"MEUCIQDe1J/ncFzUv5wrb++JH1jXaWMmAbFt4NJdpA6d6JUvWAIgG5H95VtgScLa6FAAVFRlkJvsaPomxM/7xbJ07NfoYFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"34e2761b660a1698dfe42336db4481968d385e35","gitHead":"028466a914a9a10c6a901c5db1bba37e1d047c98","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.1.6","description":" PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"0.10.33","dependencies":{"postcss-message-helpers":"^1.1.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^3.0.0"}},"6.0.0":{"name":"postcss-custom-media","version":"6.0.0","keywords":["css","postcss","postcss-plugin","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@6.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"be532784110ecb295044fb5395a18006eb21a737","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-6.0.0.tgz","integrity":"sha512-MLjf2Yghub+USZpLWCB11hLrEEaCWM4lYf4UR9ui3iPCQFdywvEaY5yt4PnOClGrACGaHTNKPF9koiZLdJOmYw==","signatures":[{"sig":"MEYCIQCsD4TbF6XQAMkE1ygSfdT9aNezmRh8BxeqmHMuVZnDqAIhAIDGqs29escwDgdukmjLsRqw3zkm81l4XE/qtqwpccU7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"be532784110ecb295044fb5395a18006eb21a737","gitHead":"c9192e5fbac7b34af9e3b9cf79a16e58f231d09c","scripts":{"lint":"eslint --fix .","test":"npm run lint && npm run tests","tests":"tape test","release":"npmpub"},"_npmUser":{"name":"semigradsky","email":"semigradskyd@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"3.10.3","description":"PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"6.5.0","dependencies":{"postcss":"^6.0.1"},"eslintConfig":{"extends":"eslint-config-i-am-meticulous/es5"},"devDependencies":{"tape":"^4.6.3","eslint":"^3.19.0","npmpub":"^3.1.0","eslint-plugin-import":"^1.7.0","eslint-config-i-am-meticulous":"^6.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media-6.0.0.tgz_1494581077012_0.5552500844933093","host":"packages-12-west.internal.npmjs.com"}},"9.1.2":{"name":"postcss-custom-media","version":"9.1.2","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.2","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0e9c34b0b5325edc2c5f42f47543cb64d777764b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.2.tgz","fileCount":16,"integrity":"sha512-osM9g4UKq4XKimAC7RAXroqi3BXpxfwTswAJQiZdrBjWGFGEyxQrY5H2eDWI8F+MEvEUfYDxA8scqi3QWROCSw==","signatures":[{"sig":"MEUCIQCENstQuhni1sWwb8EVeSteohDPErQ0ACUXkLVnARTsDAIgATVtSYBepd6jtguzmNeFyrk2s623il32mXy+/g9Ud6E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj417jACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/jg/+OJdR5U4+KP69Jii+qCg2s+QUETfEPTTfUEho9QGcRgDHs10T\r\nm1VcBqJRcVI3CE1d0ryCOEWvinFR3uQfc+NpNkfxf3h+P7OXPlu0SuTBPUo8\r\n1OyTxOzOUp7LqvmyLFhAJySFAvs17gP1iom6nSjMtuogZsjiWMq8AW/qRiVN\r\nm5N83tCDIeDiuGvkBcbW6u1C5oUn7VidKuaaXXFQoxl6j13lbJAWHHHiRFFa\r\nxYM+445m6Kda1dEqJNBj9fcriJCRf7RhgyeoUzt9b1HNyeR3CUglTwWbjHgz\r\nR7pv7jtWyOkgkOKb6ORMAGcHP+J5I5gf2yjvnVOL5ebfmGmta/FpL2piK9+G\r\n5FUYO7Ra8C8goJfhHiSh1Rxq7PKdl/60JueZMuWYSUD2sj/PClPnSaDnf8ns\r\nteokquTI2S2OjH8wxkpblO/kWS2wHbqybmmeDCfHkMefiipULGsFjPHHimg6\r\neIcgVd0mLPqkkhpiWhbWvhkjQJMu+wx7BcPLF1UJOQ74BOq/6uGboeCn/lBf\r\nKbEQqi5fUjQvePAmXE1OMy/XUNZ7WizM+1LMjgQmINyK5zrvAPLJsMHVxkQy\r\njPCHtJGK3Z4Jh4QfIEuUZrPXNxFLSJEQkn1IczaNe+Ekb7GrFW+0+nbIUBt7\r\nZFm1EVXgAkbNEUuLRJtqOCSA5J86zrCcgVM=\r\n=r12J\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":"f02647748e9d1799a3d605d108a248d1cfd05cc7","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/media-query-list-parser":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.2_1675845347617_0.17709776050794623","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-custom-media","version":"5.0.0","keywords":["css","postcss","postcss-plugin","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@5.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"1e07fa54df17e4c6df5d0d0d5bcda6216332fa12","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-5.0.0.tgz","integrity":"sha512-5rBHmjd7kh97ufQ+T+oLLFQngKaDPNeR07oLZSm1jpaCm81dd3etZifylxKGaxl3f+6mJ+Ujxn9pOHaGaijeyQ==","signatures":[{"sig":"MEUCIQC77Cjld5z97VzyNFLntQhuJycunl3kZyysXXmA7kgHDwIgD8AntbZXLcJQ9UjI3CSXBCxNpyYXp3nVRs8RJk+RCfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"1e07fa54df17e4c6df5d0d0d5bcda6216332fa12","gitHead":"4fc56724a73d54d803301a6a3004c97995a4aa92","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.13.3","description":"PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"3.0.0","dependencies":{"postcss":"^5.0.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.0.0"}},"9.1.3":{"name":"postcss-custom-media","version":"9.1.3","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.3","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"68bb2ae377bb07c19f03f252930cc380af894dce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.3.tgz","fileCount":16,"integrity":"sha512-W1C4Fu6KAZ7sKYQCuGMr8gyaE4BtjTQGPLVS4m0WCaWM6l7PgVbvmDeb4ClBc5R/7kdwESYf0hdxGtEPhi9CLA==","signatures":[{"sig":"MEUCIB84avZ9Zsd2UsMIcV8Tr1flE0+5R6MIIAFtB2mugrQTAiEAoZOLdJQi3L2i/mMT8xJXSXlBgfZsyPmrwWMhgx3l3Ng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33232,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkM+0fACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJPw//dUvenSNl9Ep8qNO9QPTy7f4GeUxmM5sXyWQCIACe2evdIfF2\r\nV39g9d5xIpcvfFE87DJo9qvm9h/yh6o7dP0MjUQ8vitpJUSt2Uzbj4YMGp5t\r\n0nl+1NXIXH5s0mziRxDZV9EP0AQgjkPJif8XwwI7RdXx5SkU2R004GYF+Ut+\r\noCzv9Dhfy0G+7gP9zvS8FC4Vx6dJaD8/2LZj1/cwu3dSsbEjWFiB4o3Qqzgv\r\nNksAWwihiUqvHECati8qfnEw5Y2jkFusWRFuhsDL05oCI9AMs78hh4VNqGoy\r\nD0y3KrHCVG1QBNT9djQp2GR82IfcBFkjx48zTBu0oPXcnXoZs7S0ognZhDn+\r\nT5n2fmjroKm6x9w6dQTTyFL/+l6OiQAnxwdO9UjXPLw8k3Oo16/4HkD89Wk5\r\nxhia/u9RZXWUPB9/35yGOPN3VNJR130P4e2oXXW+qwb8gTCRUiPYLEJ9u5mr\r\nsp9EX8BpBBXC4CDiuMUb29P6kL1QNiwcoPTBK0eyI9wIlMKsn0DftEObuLw8\r\n+B0RXa5Psu1oTyt9d3rVG0TWYXcEg4y5WhSi+vUcw/6+J19DwcproN5hmyUt\r\nB1dsZ2IEDzgjEqcAiW4IjzbhQ7oICNYnEc3rJMceg/9/6geCq07530HGQh0e\r\nDBwPRllnbSpghAhL8uov9w3DlSDGU8DLf7o=\r\n=JwSH\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":"13d3c920e56534bc175d9b89eb2ee439c9bdf6b0","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.1.1","@csstools/media-query-list-parser":"^2.0.4","@csstools/cascade-layer-name-parser":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.3_1681124638945_0.6095285838937234","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-custom-media","version":"5.0.1","keywords":["css","postcss","postcss-plugin","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@5.0.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"138d25a184bf2eb54de12d55a6c01c30a9d8bd81","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-5.0.1.tgz","integrity":"sha512-EdojG8oK+4Io0IzTOrz7+5Czd0BtLgtlCcTCjxJoj02RD8vQxo7PbcpmX7qL0uxeVyDOiOoJtx91Uu3ymLyaEQ==","signatures":[{"sig":"MEUCIHmy5xLbIv7oafuMhfndxVao7I+c22Pu0U8Ex9hO3d6VAiEA01F+SC3FEk8tLDh/Ut/XWw4BOccVgCmEBjXTfCz0Dp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"138d25a184bf2eb54de12d55a6c01c30a9d8bd81","gitHead":"c1bfe9fd04c66da6f86072f063c3539b061344b4","scripts":{"lint":"eslint --fix .","test":"npm run lint && npm run tests","tests":"tape test","release":"npmpub"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"3.3.12","description":"PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"5.5.0","dependencies":{"postcss":"^5.0.0"},"eslintConfig":{"extends":"eslint-config-i-am-meticulous/es5"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.10.3","npmpub":"^3.0.1","eslint-config-i-am-meticulous":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media-5.0.1.tgz_1454482531134_0.5744193433783948","host":"packages-6-west.internal.npmjs.com"}},"9.1.4":{"name":"postcss-custom-media","version":"9.1.4","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.4","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"90ea49986b91512f95430775b191d83893142c16","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.4.tgz","fileCount":16,"integrity":"sha512-4A7WEG3iIyKwfpxL5bkuSlHoHHGRTHl0212Z3uvpwJPyVfZJlkZAQNNgVC+oogrJgksDnfKyuuMbG6HafZPW8Q==","signatures":[{"sig":"MEUCIFSzxJH1egk7GuY0veVu0w6zPe8PVaTv83/NZHEI2oveAiEAqGizWqsIVEn2EdGvn4A5ORXApPgPinb2zTfvr1KsQFA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33415},"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":"e4adad217f8593dbaf63778abd23f168e79b1ee2","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.5.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.1.1","@csstools/media-query-list-parser":"^2.1.0","@csstools/cascade-layer-name-parser":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.4_1685627209556_0.05131140183998606","host":"s3://npm-registry-packages"}},"9.1.5":{"name":"postcss-custom-media","version":"9.1.5","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.5","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"20c5822dd15155d768f8dd84e07a6ffd5d01b054","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.5.tgz","fileCount":16,"integrity":"sha512-GStyWMz7Qbo/Gtw1xVspzVSX8eipgNg4lpsO3CAeY4/A1mzok+RV6MCv3fg62trWijh/lYEj6vps4o8JcBBpDA==","signatures":[{"sig":"MEQCIH/XkjOyeAxyXquXnSSi/r+bINSLTSKfAsPU0sqBJPULAiBYY/nUNpbYQ1MlyqV5vjLZ93CwnPhbGUYyegvQ2KUSBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33509},"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":"71e2c968479929fe7938b45c802fa6b923fb0f72","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.5.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.2.0","@csstools/media-query-list-parser":"^2.1.1","@csstools/cascade-layer-name-parser":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.5_1687333809992_0.7998821836783869","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"postcss-custom-media","version":"1.1.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-media@1.1.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"9709bad899552273eeb514450c7103480997b53c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.1.0.tgz","integrity":"sha512-XrvmcPklhnm7tG74FQ4wUDdhCa2xQ5DdDiTVOg/vkCXlEGMvathiwhtobZ2Kfgo6DSHJO6PwInZ+bxkG9ThEyA==","signatures":[{"sig":"MEUCIFD7lpDRycDdNXM0IXq98VJmUyOZAMU5arUDKDYpI4oqAiEAw+Z/PPXgbwaUAggIxMmMp15oJ97AinGZOHGUMtyDnRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"9709bad899552273eeb514450c7103480997b53c","gitHead":"42dfbc30fe7929ffcd930c397bed0599da0fe0d9","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.0.2","description":"PostCSS plugin to import CSS files","directories":{},"_nodeVersion":"0.10.32","dependencies":{},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.2","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"11.0.1":{"name":"postcss-custom-media","version":"11.0.1","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7f7157a9235d78432b20a722d8f3844a85043eb8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.1.tgz","fileCount":7,"integrity":"sha512-vfBliYVgEEJUFXCRPQ7jYt1wlD322u+/5GT0tZqMVYFInkpDHfjhU3nk2quTRW4uFc/umOOqLlxvrEOZRvloMw==","signatures":[{"sig":"MEYCIQCzmyrfmg3wzsw6qiTFVA+0KcFr6xCgxF6YN3CSE9poIAIhALbaQQqK+MOm1IZBXhd1dihOn0vDERS/U8Ttyox8xMYq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25974},"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":"a9ccb41bbbbc6f8d24b38865fe298593af74b2a8","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.1","@csstools/css-parser-algorithms":"^3.0.1","@csstools/media-query-list-parser":"^3.0.1","@csstools/cascade-layer-name-parser":"^2.0.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.1_1723996251089_0.6205426202708393","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"postcss-custom-media","version":"11.0.0","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"9584ef2cb1ef53ec4eda68092f35ca64962de038","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.0.tgz","fileCount":7,"integrity":"sha512-tZ4qTYSOqH7YFi8psEQB2v2zBRbbJex9FgPef2Qss8DlWxnYpBNHquvMmVBR8uIt6hW0+prDsg7UJDp6XLIf8w==","signatures":[{"sig":"MEUCIQDfNQhSR/L5ecl6UPh1312I5527M6uNAesFVeP30GXKYQIgUQPQiURjOLH9Gwi13V93ZTsuhfZVL/kebJTDK+L6KwE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26015},"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":"5bafb9cdbb29a62315ad5d8e44040117bdc7b54d","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.0","@csstools/css-parser-algorithms":"^3.0.0","@csstools/media-query-list-parser":"^3.0.0","@csstools/cascade-layer-name-parser":"^2.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.0_1722721343002_0.20430931207908976","host":"s3://npm-registry-packages"}},"11.0.3":{"name":"postcss-custom-media","version":"11.0.3","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"3c25c0d10870ea6d6afb17ff8ea636d089544ed4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.3.tgz","fileCount":7,"integrity":"sha512-h52R7j0/QZP7NgnpsUaqx6wdssplK4U+ZuErvic2StgvXt3v5sPopFH86yjLvqz3jBrj/8Hkvr7Gio1LLRFP0g==","signatures":[{"sig":"MEQCIASfRrJAzxNN8QMaUBlCDskbSKpGHtus+znyff+TjITIAiAPAAqh6V9OY3RQRt22gmZK81BErZEOS9WQbiLmxmviDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26283},"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":"767e1dcc6bf307f83666dce734ee0c58402da652","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.2","@csstools/css-parser-algorithms":"^3.0.2","@csstools/media-query-list-parser":"^4.0.0","@csstools/cascade-layer-name-parser":"^2.0.2"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.3_1728563268459_0.2936958578064046","host":"s3://npm-registry-packages"}},"11.0.2":{"name":"postcss-custom-media","version":"11.0.2","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.2","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5e490d224e5d9714d1bf587a7df8561ce2db742c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.2.tgz","fileCount":7,"integrity":"sha512-IDtxB1VgPayRLjNBMjuf827sn1j2m9EGnhIxpx2coVerbWJF+twt590+PKvdDc4K8QNFqFJh+W/SOiHpasVXsg==","signatures":[{"sig":"MEQCIBHP4YDsh/bnDWPjcST/N69j+m+1RJUbBjVoEzwg+vQ3AiAQ494pBesmk8rYUJ9TkyecJMSGN/vgbE1ivYT1XwjpEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25032},"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":"b19cdb1ed27e3343fa4c18f38e7c3bf7baaea115","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.1","@csstools/css-parser-algorithms":"^3.0.1","@csstools/media-query-list-parser":"^3.0.1","@csstools/cascade-layer-name-parser":"^2.0.1"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.2_1728064436280_0.34010711096036084","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"postcss-custom-media","version":"9.1.0","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"09afcf2aef4ae931ab3e594e20eab0dd2eacf3f2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.0.tgz","fileCount":16,"integrity":"sha512-K9sIQhdsXazHyhHaMIL/wztFV6ABHi6NwxNPO3q0o0T2zkI4oEqI1TjeoncBKIY6xPrqnWTV40KF8AJ7yd0W6g==","signatures":[{"sig":"MEUCIQChfdXAqY9Zndz/RVD/Q0VB5kz+viOpGEUhQ8ZirZR0QgIgIAnBzWReLRalUXg/RErcWgTURt1E138zrpamI11425g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz5wAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/0RAAnF/vc4uhX5CGUO4wdqMQcuOd+FIG/N4EW5HrTJaK9ZeJoDw+\r\nDS4RsFbhSF9congaFfrhE61/oQNBJcvDXueXJBrwCnmNdk4fNcudNNxk2kPv\r\n20zEyknznDCyt3vnMR5b1gK1BuqX9LM3yKGDfVIV5646CEnrU1paxG8WYF6s\r\nzd7zRAN7+p7Yyq1Ei7VdzlyJA2Ud2c5H4s2nU8wVcEpG8s6bN/gKZWQ7g/9V\r\ntajTEHdyrFO7ge9WTiE03SGJ/7vEeNB0GoWcLbBFzu86Bi8O2BCKHLodWcPT\r\nDcuqL4IPcE3calVD8OtevYXveVC4VMHlZeszkEr5P6jXH7lTiAsS+IUeoCyw\r\nl/CXQg+lkgckzqHhDoXcnSzRv0HRqoANbm1qFHtDW4kUPjeO7kkcM6kKFfVh\r\nJsRijQ6YC1uG5RURz9SVSFoyADtgCveXNCMisWvdsPSh3Bd668h5IftFS3Ik\r\nlmJxp4VGD6DvWoyAQ/WicCEqMEZiJRXBxSLdOPbZemcKhmkqLRIXprXay7Qb\r\nHhn/CS475OTp5H4QQUAKIDY+ad6KsjHIjLn1rRFmeZebCalwwmwJAwFCJl6f\r\nDTsDABapImR2N3JlfYPXl5O3/ZuHNj/jwZqMG/RC7p34gBlxbHIU1/AkDQzt\r\nh9qbcebix6cc+wvcmoCj+HMck18wMt+U3ww=\r\n=lLM0\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":"ec282f22731a452dfa35319bb7c3934c127fa98a","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.1.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/media-query-list-parser":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.0_1674550272374_0.40651695854187175","host":"s3://npm-registry-packages"}},"9.1.1":{"name":"postcss-custom-media","version":"9.1.1","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@9.1.1","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ceeb1cd7e5d13ee6aeb68206b8817d178e6437cb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-9.1.1.tgz","fileCount":16,"integrity":"sha512-veQwzQkHgBkizxYCV/EBsiK8sFIJA0oQMQL9mpQ3gqFGc2dWlNWURHk4J44i9Q0dFeFCK81vV/Xpj7fyfNQKSA==","signatures":[{"sig":"MEQCICHkuKtvU/gjDbdI8Aolxtgqynh4rwsGyINFncg09pWsAiA8u9LXky7ELMiw6QUaXl1CDErS80eOfUrL6aD6BTSlHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1M/rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3SRAAnJfM0kJBBV0bmYqN5UbvYxsEsi3eJQ1YtomXI0NRafqAhd6S\r\nonW9EjMncy7Hn9Ix15Qb09mRtG35IGoO+fQQurocUY1+TtT70Htf7LMT9vtz\r\nLl2W1CNF5S7lMObViye2Kydm3LqAvc8mXvUFmw1evan73YEhM2aNMFrV10WB\r\nKU+DOAPE/afzN6IFI0pVU03esxxkc1Jp75j/26Kn8ZDwu9ajdJmG7VQbYzsC\r\nf8mB05himfwqE72oicgu6DnB6L9NUgNhr/wFY39q+Qy7EGOpg20zAdMHk44R\r\nxlwalVe/1+4PtqBVG7vyOs6nqgeLM5Lds0FSNyV3dGjmZOeGj8KTajRz+1eG\r\nFCvr2uQwUUyOvNWQthoF4v2KqnNYFlQMw1GxMsqhU2cVPG5dO+1wMNU2S+rr\r\nvDpCuq81ha+gkSK6QgiWDS98vLQbIaeNAgMdjCzhXjKyWr55WtZLeitxAmZw\r\nMtNzyFyblmT+HlIrZClWCksJx0V67Jx0oSoSx7A/raIj5rT/YSuV+gFGVoqc\r\nsWZjVNXPVyadQWucvX/DBVAGUj2B6UDRZoYIY22QoFo/LJCfSK89UzJcKF+r\r\nm01m6+q4lDP2rwknurtsqD85wSFiD6/VY2bK7KsWU1nvp6Akx+40rqNnoyis\r\nsVK+IK5O8WTSeoS2kA4xmKtoqB8zXj+/l58=\r\n=Qazp\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":"417d016b7a61b54142ed67989958d0f84dd078c1","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"8.18.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"@csstools/css-tokenizer":"^2.0.0","@csstools/css-parser-algorithms":"^2.0.0","@csstools/media-query-list-parser":"^2.0.0","@csstools/cascade-layer-name-parser":"^1.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_9.1.1_1674891243785_0.14760320440159935","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-custom-media","version":"4.0.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@4.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"b90a18007ff8439f5c8c1cf9fac18b241a7a0b80","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-4.0.0.tgz","integrity":"sha512-eIeK5QF85dH+1RAfzo4wXwMnoxWCxDC/qXDX+aa+V01TXnuE3J45dMh9O4KH05vIy+I4LMJLG0bK1uqXX0L4Ag==","signatures":[{"sig":"MEYCIQCyTdQQmWikhg+ap+ZLGuCgeXshAhKhCay5mUD6KhQuXAIhAJwn89fMZ7xVW/psp7pFmcMpAF8r/uWAqgdFiZosJwUR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"b90a18007ff8439f5c8c1cf9fac18b241a7a0b80","gitHead":"2c8f2538088be18c64d66f70f6803cb6ffb28896","scripts":{"test":"eslint . && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.9.0","description":" PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"2.0.1","dependencies":{"postcss":"^4.1.4"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.23.0"}},"11.0.5":{"name":"postcss-custom-media","version":"11.0.5","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"2fcd88a9b1d4da41c67dac6f2def903063a3377d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz","fileCount":7,"integrity":"sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ==","signatures":[{"sig":"MEQCIBQuysd8v+dMK44ajVZeDYn1pLTrvHlZK8hyOEWl3cztAiAobPymAAmzDZftxD+6BVgY7diPPI6jc4NCOKnKFd8PMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26244},"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":"dfb0f4fd70e36752d7a1e4d3b70a8275c98e0ebe","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.3","@csstools/css-parser-algorithms":"^3.0.4","@csstools/media-query-list-parser":"^4.0.2","@csstools/cascade-layer-name-parser":"^2.0.4"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.5_1730497758128_0.41071350792838923","host":"s3://npm-registry-packages"}},"11.0.4":{"name":"postcss-custom-media","version":"11.0.4","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4c4e3d33b6d0b13d440f83968f6849502d3bcd6f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.4.tgz","fileCount":7,"integrity":"sha512-fz6+8rikAQZHsDwy2EEdeE0JlOaYRz1O0WNyrENkC21nEQfp2etnLcP4V1igieGG5mKokfLmH6lLrBR8kMRUfA==","signatures":[{"sig":"MEUCIQCUWgZBFiORe2+DQTDP48odj81qs4WCxyxTkbFdlRd0ZQIgNmDVx2hqFzDaVz2POxdAwMWNoRWu+4KzrzA+fujWL/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26012},"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":"8e09bb8f969800a64f07ca2bc9b2c91bd216a832","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^3.0.2","@csstools/css-parser-algorithms":"^3.0.3","@csstools/media-query-list-parser":"^4.0.1","@csstools/cascade-layer-name-parser":"^2.0.3"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.4_1729720114588_0.44303148295375383","host":"s3://npm-registry-packages"}},"11.0.6":{"name":"postcss-custom-media","version":"11.0.6","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@11.0.6","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6b450e5bfa209efb736830066682e6567bd04967","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz","fileCount":7,"integrity":"sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==","signatures":[{"sig":"MEUCIBvDOusjrXu743KpqelZIP+YDXmjTcChzKR1iEL3EbwSAiEAxumZaaf+w9P8IN69pqC0CxRSDuqvc3KOzRhOlk6K9fA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":26235},"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":"fe49b6a8d0412c8eb8535359c647c9cc53ad21ef","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.9.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.12.0","dependencies":{"@csstools/css-tokenizer":"^3.0.4","@csstools/css-parser-algorithms":"^3.0.5","@csstools/media-query-list-parser":"^4.0.3","@csstools/cascade-layer-name-parser":"^2.0.5"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_11.0.6_1748343057004_0.6404972817311294","host":"s3://npm-registry-packages-npm-production"}},"3.0.0":{"name":"postcss-custom-media","version":"3.0.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@3.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"5e35ae8badb31062ff6ba4940f7756df9cdea12c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-3.0.0.tgz","integrity":"sha512-655wavnyeeARsc21MYZIoq/pCJHsyzL3d946YUGVMZmzlP/BEVQ5k4Oabh2S1xe0tqhjAaHYFbSQZ4Yu31jdZA==","signatures":[{"sig":"MEUCIHoFp7EJ3REHM9d7wIqN7QZj9t0oRfiAIeFN+0My1bfmAiEAlhginAYyotxbki6oqqMbdj9pJx5h7ps2+zTAb/P8XI8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"5e35ae8badb31062ff6ba4940f7756df9cdea12c","gitHead":"177c593c18b5594a65e6d731b6e906e80b4e88fd","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.1.18","description":" PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"0.10.35","dependencies":{"postcss-message-helpers":"^2.0.0"},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^4.0.2"}},"12.0.1":{"name":"postcss-custom-media","description":"Use Custom Media Queries in CSS","version":"12.0.1","contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"license":"MIT","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"dependencies":{"@csstools/cascade-layer-name-parser":"^3.0.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/css-tokenizer":"^4.0.0","@csstools/media-query-list-parser":"^5.0.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-custom-media"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"gitHead":"2420eea00a1dd3894290652b0b13658b7e50894d","_id":"postcss-custom-media@12.0.1","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-66syE14+VeqkUf0rRX0bvbTCbNRJF132jD+ceo8th1dap2YJEAqpdh5uG98CE3IbgHT7m9XM0GIlOazNWqQdeA==","shasum":"92ddc08c0f3140d82e64d26b8481b7be795031b4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-12.0.1.tgz","fileCount":6,"unpackedSize":16560,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIA+LhL9hPyJwxgDnVDjrKp9rKpsC3DPTt3eVeFnboNskAiAbePUVxYD7fM7yETnwLjU64emrS6/BpHkXQof3fMV51Q=="}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-custom-media_12.0.1_1771686344415_0.6714196218411932"},"_hasShrinkwrap":false},"12.0.0":{"name":"postcss-custom-media","version":"12.0.0","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@12.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"3fcbfeaf1243592d4d8469589a016d3d8e55dcc4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-12.0.0.tgz","fileCount":6,"integrity":"sha512-jIgEvqceN6ru2uQ0f75W1g+JDi0UyECFeJKjPG7UcSkW3+03LDKH2c6h+9C0XuDTV4y2pEHmD5AJtVBq1OGnZA==","signatures":[{"sig":"MEQCIBGrIlwxKh6G47BlhCdf51mVSOf1vV2+c0WliVpOWUV5AiAxHwrlu72ZWjii2YLsPzhTVhtuJu5ogMwQ1dP2xFfvoQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":17681},"type":"module","engines":{"node":">=20.19.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"32ca7cb4d82822ee614d05a529cf07593a58608a","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"11.6.2","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"25.1.0","dependencies":{"@csstools/css-tokenizer":"^4.0.0","@csstools/css-parser-algorithms":"^4.0.0","@csstools/media-query-list-parser":"^5.0.0","@csstools/cascade-layer-name-parser":"^3.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_12.0.0_1768376039263_0.6121971697769382","host":"s3://npm-registry-packages-npm-production"}},"7.0.5":{"name":"postcss-custom-media","version":"7.0.5","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.5","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"be16a0838ab145dd06eab0703022467b2677e68c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.5.tgz","fileCount":6,"integrity":"sha512-snWzHFtuUBYBRygY6R07LbXNr4/pr80+oN0yCK4ViU/Nnld3cRlzu1ztKE+9RW1x2MISaqZV5ITXeYwYCdmVBQ==","signatures":[{"sig":"MEUCIQCD+rqBt0iIZh4gYj1HxzBpzFeAnrK/Ip8yJ6n5nLj3agIgRA5dAs0hM4zKZDs7hmWwmvuDRO3kh+Qs3hP5wq9Sn+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbv0jICRA9TVsSAnZWagAAkLkP/1eYAZGQccDXtFW6qZ8b\nkPcJM8yzuBdtzKCH+704Gg0k/YFeTVuBVyIl80A5Pa1oLnVUAroU0H7ol2VX\nqrxlcqrF02ubioegRC+6Nwn90ynSANhZQd+itdOozuH3da489tFBxTfYxvve\nw/Nfh50V670W5kXc7uxt2mHU7ktXZemPNQldInWGZEfg0hqsb8XT+7YJJAVZ\nj8ue+nBP1/rLiCHkFvz93CBeNLKf72PKSn8usfi0d+2hWuMuzvcjWtqyEkOH\nWXipXPpuc+diuCxNVe1ceIoZaZ30ThMvD1GS1db8GQnJ+89jbSSBNGJZdoH7\nbKDN5byhLgYUd67affWKMK3d5lO2RIocDF+MmQNURUoOiwTGsu+zbAXsW74o\nnwuZCp9mhPF+FHASg70yPqEQaMByRNgGkRT4jmNeJpWMtUbp01blanQtm3t8\nfZi4Xq27X2h1NOlTfhmlzk/HF68KmC1VVc+rbct6EuZN1fY9rJ0Z1CX9uHKa\n2Du6oCaawy29zszwQEjxxPFEdv+vODhq6tjAjQG7N9v1v/x2zMb23S3AdmqW\nMIn/R8sS/68i/HRYTscuZYtKZRRTJ9F0RqOshgv/cOipOEWNDsxS6Q4TEKrs\neaAwB6AVVf3qOixStnICVex5djE0mTUUTddx29MDa/lbBVZOz7N2Dq0lTB7/\nO39+\r\n=hz4u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"0929148f04fff7d400e30d3cb1c6a0be961182e5","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.5"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.1","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-custom-media_7.0.5_1539262663515_0.7449141430956239","host":"s3://npm-registry-packages"}},"7.0.6":{"name":"postcss-custom-media","version":"7.0.6","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.6","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"c6b00ff7fee6ddc7dfdd946d66ed65e7743db09b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.6.tgz","fileCount":6,"integrity":"sha512-Txk5Ve0XWw105N6490xoq1aAHkLWIBGowBxHrLqbfsPfv/nzPvP2txyPMwn6OW87eeTO7H0a7P/BVJ4WMPEgJA==","signatures":[{"sig":"MEQCIHkPxrPeMuxvyJwBFeWJ06NCIxtwOpgo6ITWCTHLifyiAiBKeHjgD0ZsQcvmkON19bXhRFQ1R08lzjI581FQ5DFDzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55620,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwJelCRA9TVsSAnZWagAATygQAKBNqVcrlZpV/O6sI5SW\nOVcq10l8MBhfPc7LYY/5h/t7jt6xQlnHQaL1z0M9i4ivAUovkszXJyhm42Pv\nFtvz9Yw77nOcecVWz2ANFNaJ2/okSYnPmUpNg63hD0psQSoIu1uDmJeHUkB+\n1+Wy6hqc7pcMlaoZzvNC7LzJvy9fH4j7LNmXwrRtTxlVLoaH66XREDtS3uGC\n0WFdURP1/h5TCkQecDiSTaZldXe7wkCPx6JnnP5WEGctNMLYqHlduCJ+9zBy\n47JyTh4N7SH/0UuYKrn1v0YnQQfWx/hHemtSmFggzykuqae5aswHs902MVbR\nW7aEwSl+5VRsJK48AbOQoAzGBY1j5vtx9c1oIRVEx3dG5XIFpRSjduFbOwfx\nyttVA56uO/S69P1NSnSYVahkmnciosDqPYtNzBGK33ZnxWc5B0Q0b6NVSltE\ns5Lyj4bT+tL9K/4b1xrMQTuo5aHCs/0axhy1rlEdI9dqIB/7qnL1Q6tbtKhS\naUcEPIzMf5qJSS8BJw3Omf+7SWRpScMRFMZrMbMClBC2TAWN0Xz2w9H3lZqV\nWLK078DVS9q91gwF/2rjsO8oHHk5njUZL4ZavSMkm7x6EXcU+8bdfCOREloE\n/T1XySQou6VVv1xZexXmkoLwjp9IbCXTaqyluUWcH2P5jaIRt85FlWs+GuRC\n0ctJ\r\n=H3D1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"f095211389d761e426f43a32a437bde273930598","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.5"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.1","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-custom-media_7.0.6_1539348388543_0.40422186205835664","host":"s3://npm-registry-packages"}},"7.0.7":{"name":"postcss-custom-media","version":"7.0.7","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.7","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"bbc698ed3089ded61aad0f5bfb1fb48bf6969e73","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.7.tgz","fileCount":6,"integrity":"sha512-bWPCdZKdH60wKOTG4HKEgxWnZVjAIVNOJDvi3lkuTa90xo/K0YHa2ZnlKLC5e2qF8qCcMQXt0yzQITBp8d0OFA==","signatures":[{"sig":"MEUCIHcyoi8FsMoCEOynTtGCmcu9MvqC2cu8yLS+y44c9uXJAiEA7uzoqaLMMqVxl6t8uKBOPZjpqryFmt6iyBgLZKk5Mmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbylpHCRA9TVsSAnZWagAAJWkQAIpWSEIGra2ePXMXjYDk\nakpL0bknrWcBI7iD6sayImV1h92SZe5FL7SWkBkKKeFFUFzsbPEeOCIgP/y2\nKI+5QsKP8kxbHxMUqxY33hHGcWK4HrB8xrRgv/xXnTR95Gmvu6+/18w1fybO\nQ5zqquObaDKVHF8pA2921o1hOljUqo+PBy/ujqQcjs1Sn1c+r0oCaniuytFK\n+J3TsAq0x2lmj1AKkuBhFgC4laJpKFa9A7JdbTUf9NxzTVw9ebS7vgLsCxtZ\nVRcEoP7ZnKMl9hfHA/9QOWyRIpRC9LGYgD8kp0tL0ZccriVr+x3zKpQ9PoYe\n7ZbKb60+Td24FT1uTRRvklXYlFslf8FLuDsmSf/qOzpaAi268TwCX3tXYJX3\nDXZ2CjpRM440aEXSGRWpUUdNX8tPrJtMYwROmySF/L6hRmXUjkyaegfEYIm6\nH27Z1d4HYDpuj2eVZhz0RHYXzBEMmPtUwNNP3b2j66eJwSWTBajV1mk/THXl\nve3sqRsrnm08bx2KusLnxtG/dXtdCo1DhXZ3uDN1WYKwglWX68fycKyix7Lc\nbMBdkc6/7Rq54mw9gQsJMFyWaDEjk2rQmMhUTjaCwIqB7FbaBmUMPTtO4Ybg\nLx/eHpn7PUHCR7HZ/l/cJbYrY0tKCoU3Vicl1ZfUDGF9XLd8qIynT62nUxxW\n4KTy\r\n=Ge61\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"5db224c00226e8e0eac296d9dcee9208db299766","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.4.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"10.12.0","dependencies":{"postcss":"^7.0.5"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.7.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-custom-media_7.0.7_1539988038021_0.37024853597568397","host":"s3://npm-registry-packages"}},"7.0.8":{"name":"postcss-custom-media","version":"7.0.8","keywords":["postcss","css","postcss-plugin","custom","media","query","queries","w3c","csswg","atrule","at-rule","specification"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","_id":"postcss-custom-media@7.0.8","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"name":"Maxime Thirouin"}],"homepage":"https://github.com/postcss/postcss-custom-media#readme","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"fffd13ffeffad73621be5f387076a28b00294e0c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz","fileCount":6,"integrity":"sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==","signatures":[{"sig":"MEQCICo4whEZ94NPqVQaZ6onMOziH1oWYxEbnDJxjYuZM168AiA7nnrdqdKNlWlWv25Y3n5adoySFuC3gccpCJkstkHKeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnwaVCRA9TVsSAnZWagAABVIP/1StfFhNChv8JShIW9cZ\nOm/yKXf/JoJvZCh535EQwKtH6R5hv8+oKboWRsZyfu+5zLuGiWab5clc2CfW\nJNLZ/Zyl5XXiyZqDWQ5tRf67rNHyMTmpeUJo4+Vqx/+Lb8NN3QfTtt5skYMB\nGynp/LktXGF6SBW3hZFdTQ4f1/xtdlvB5LdWC7sZaa891JU0C7iVjVlM8WfV\nN96u1X6esyY6OWH7OM2qZdh+RigcFm5YBWkGkO44nso4tfAfkDUYtH0rBsP2\nfxM3zqdK0IxJI85+MlB24h6Ll9CAZTogJgwo5TY50vGAyltDds4G9SmQ+nDC\n11ekRfKUHPCOFBa8Owax2kkXHmd5Bzx6pquoVz/Ye/P1echnqyrxzCbblgEi\nDIoPnFPQ4O43zjCYl861JpmYTLPN5ep+vy28/J0d83hL2sqXkEkLDP5+78UK\n/2rcZd6pQ9BnVsAtBSbNGUFL4l83FPO1n7scD6FkodYS3/m+90MTwH59SyCT\n6Zsx47RPc0wvbJFQWCp1khlaKcndGC8ksBTMz0GGxP3Zn6pS0QCEvup5nBHV\n0rEij8jB6QgYZfydiLApvsRP7koYADykFYZiStAw7SPRiJDbEynO1tUHC7ew\n9EMrM7ooGPZN+HNVTY/tBGG7FE6qeypRaCvjcpZB9n/rYOFqhtnrLbJKMI6P\nrdGQ\r\n=l3Lc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"ca22cf673fbffbc981807c1e4b758f1575fb8aec","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"6.9.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"11.11.0","dependencies":{"postcss":"^7.0.14"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.16.0","rollup":"^1.7.4","pre-commit":"^1.2.2","@babel/core":"^7.4.0","babel-eslint":"^10.0.1","postcss-tape":"^4.0.0","@babel/preset-env":"^7.4.2","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.3.2","@babel/plugin-syntax-dynamic-import":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_7.0.8_1553925780916_0.0868766504363867","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"postcss-custom-media","version":"1.2.1","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"Maxime Thirouin"},"license":"MIT","_id":"postcss-custom-media@1.2.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"e30796bc5c6c2c5d8b190ce1028af1d57154cd10","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.2.1.tgz","integrity":"sha512-LHzbHOEppb/NgZEFVVOtrNF3pqjB/5UsUYUl+X3b68W0N9HSG5JGnjq0Z2dR0ur/IU2qlAKUNP1cvOzBWGrO0w==","signatures":[{"sig":"MEQCIF5K//nVz4f+JMAXDkZRgIybAspaF6ReJa+OyHHW7EurAiBIwyUKbXIMCWJnRUF+Pfvjyb168btjdrHIROWJ64Y+iw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","index.js"],"_shasum":"e30796bc5c6c2c5d8b190ce1028af1d57154cd10","gitHead":"eb883df80504c641673cf69aa4d3e41e20d2e043","scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.1.6","description":" PostCSS plugin to transform W3C CSS Custom Media Queries to more compatible CSS","directories":{},"_nodeVersion":"0.10.33","dependencies":{},"devDependencies":{"jscs":"^1.6.2","tape":"^3.0.0","jshint":"^2.5.6","postcss":"^2.2.5"}},"10.0.4":{"name":"postcss-custom-media","version":"10.0.4","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.4","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f40fcf05f3ee95e7a34bbdcb4dff99da41f0238f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.4.tgz","fileCount":7,"integrity":"sha512-Ubs7O3wj2prghaKRa68VHBvuy3KnTQ0zbGwqDYY1mntxJD0QL2AeiAy+AMfl3HBedTCVr2IcFNktwty9YpSskA==","signatures":[{"sig":"MEUCIQCSdhKVEqQuk6SFKq/wK+Z7YWi6A3fyW90+G6lXg27wFgIgfbpFU/nehR1NtmJGgX9sP9yrEhMzNo3WyhkrFqmYJ/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29230},"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":"70e834d582910b9b1d5fd55c851672ab48868e99","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.2.4","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"20.11.1","dependencies":{"@csstools/css-tokenizer":"^2.2.4","@csstools/css-parser-algorithms":"^2.6.1","@csstools/media-query-list-parser":"^2.1.9","@csstools/cascade-layer-name-parser":"^1.0.9"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.4_1710356243757_0.18470032536150782","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"postcss-custom-media","version":"10.0.3","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.3","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7131ee7f6e55cbb0423dcfca37c8946539f1b214","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.3.tgz","fileCount":7,"integrity":"sha512-wfJ9nKpLn/Qy7LASKu0Rj9Iq2uMzlRt27P4FAE1889IKRMdYUgy8SqvdXfAOs7LJLQX9Fjm0mZ+TSFphD/mKwA==","signatures":[{"sig":"MEUCIGomWZk6FfIyO5v3P2RmSmeu1xdSl0FLLbdzEzsoOiBoAiEAkhhCv5BE/VyLBhIsnnxn2dl4BlKFGssRzfmGv2g/nJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29316},"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":"0c954179a6a00a5f52e7eb604b857d428f04d6fc","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.2.3","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"@csstools/css-tokenizer":"^2.2.3","@csstools/css-parser-algorithms":"^2.6.0","@csstools/media-query-list-parser":"^2.1.8","@csstools/cascade-layer-name-parser":"^1.0.8"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.3_1708379421589_0.20480522047508676","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"postcss-custom-media","version":"10.0.2","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.2","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"70a244bbc59fc953ab6573e4e2c9624639aef08a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz","fileCount":16,"integrity":"sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==","signatures":[{"sig":"MEUCICBC08+EJiuutErLh8c9u2F8CYMrbgnCCKTJ54z+bTXnAiEAtiNvX0xmV9Kj7XtvDUQOBcF7YugqXDyEVzGel7UJGIg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36623},"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":"768449ddc7e226e735b9e507fd4fbd4c89c8de6c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.6.7","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.17.1","dependencies":{"@csstools/css-tokenizer":"^2.2.1","@csstools/css-parser-algorithms":"^2.3.2","@csstools/media-query-list-parser":"^2.1.5","@csstools/cascade-layer-name-parser":"^1.0.5"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.2_1696873202496_0.054363165706709404","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"postcss-custom-media","version":"10.0.1","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.1","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"48a4597451a69b1098e6eb11eb1166202171f9ed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.1.tgz","fileCount":16,"integrity":"sha512-fil7cosvzlIAYmZJPtNFcTH0Er7a3GveEK4q5Y/L24eWQHmiw8Fv/E5DMkVpdbNjkGzJxrvowOSt/Il9HZ06VQ==","signatures":[{"sig":"MEUCIQCgY3cALnM0y9S68LzHP96hEF9/QQ+5yAJmOP9M8/sepQIgAhyNFtqP6BDmpQPzyYz95npaJxTqc75GU1aYfb6YQfc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35573},"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":"574e6f45a7c16d63e76ce932dd53242b8ae68ae7","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.6.7","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.17.1","dependencies":{"@csstools/css-tokenizer":"^2.2.0","@csstools/css-parser-algorithms":"^2.3.1","@csstools/media-query-list-parser":"^2.1.4","@csstools/cascade-layer-name-parser":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.1_1695067915705_0.7381511217756715","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-custom-media","version":"10.0.0","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.0","maintainers":[{"name":"moox","email":"npm@moox.io"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"semigradsky","email":"semigradskyd@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"299781f67d043de7d3eaa13923c26c586d9cd57a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.0.tgz","fileCount":16,"integrity":"sha512-NxDn7C6GJ7X8TsWOa8MbCdq9rLERRLcPfQSp856k1jzMreL8X9M6iWk35JjPRIb9IfRnVohmxAylDRx7n4Rv4g==","signatures":[{"sig":"MEUCIQDtcj0mFoEE+GQkoO58sK6msAPi2ovL8BRsFkXoQeeMZwIgDMMWKLEst9dG7rrMQZnnZpdne0cz1hEpks4ZPXS8Wes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34155},"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":"a940a708f78ee10312200ff6058edd8fe2c80bb6","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"custom-media-queries","specUrl":"https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media","exportName":"postcssCustomMedia","humanReadableName":"PostCSS Custom Media","assumesToProcessBundledCSS":true},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"9.5.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"@csstools/css-tokenizer":"^2.1.1","@csstools/css-parser-algorithms":"^2.3.0","@csstools/media-query-list-parser":"^2.1.2","@csstools/cascade-layer-name-parser":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.0_1688373078054_0.3093753568041455","host":"s3://npm-registry-packages"}},"10.0.8":{"name":"postcss-custom-media","version":"10.0.8","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.8","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0b84916522eb1e8a4b9e3ecd2bce292844cd7323","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.8.tgz","fileCount":7,"integrity":"sha512-V1KgPcmvlGdxTel4/CyQtBJEFhMVpEmRGFrnVtgfGIHj5PJX9vO36eFBxKBeJn+aCDTed70cc+98Mz3J/uVdGQ==","signatures":[{"sig":"MEYCIQCKPdj1mMksl9xNuZxkmNJ0Wvc2XjM+DSE0LmuNL5lmAAIhAI7hTVGfOUTRnp1vjHZHmqu6rkqoOpOT9y5FDg7TkOAC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29013},"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":"235abd7659839a0afca47ebba0991e9c3db1b3d1","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^2.4.1","@csstools/css-parser-algorithms":"^2.7.1","@csstools/media-query-list-parser":"^2.1.13","@csstools/cascade-layer-name-parser":"^1.0.13"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.8_1720258690141_0.3416582124221148","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-custom-media","version":"1.0.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-media@1.0.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"0fb6dd7c84c51b8628540834b3ff7f00f91fe90b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.0.0.tgz","integrity":"sha512-eiPtW0UYHxkIvQbIjzSup1grUPt6pwFwufNqrsOCNJPBAXv6IuwQjKjIzHBqViINNxs42ZiYBE/v7lj+n0GhOA==","signatures":[{"sig":"MEUCIQDPZnhrngPHuIBx7JAEknsUekwVdBg6iLavWbcZSFOfOgIgMf3HhYbxL1TJ/kSLX44ylQyK0TfvW+lbs14sNUn6HnM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"0fb6dd7c84c51b8628540834b3ff7f00f91fe90b","gitHead":"131ec96b31b49df368db74ef995a4db25243c23a","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.0.0-alpha-5","description":"PostCSS plugin to import CSS files","directories":{},"dependencies":{},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.2","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"10.0.7":{"name":"postcss-custom-media","version":"10.0.7","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.7","contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"50f76a1e63c7c1fad6c641fc0a2a45541cb352ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.7.tgz","fileCount":7,"integrity":"sha512-o2k5nnvRZhF36pr1fGFM7a1EMTcNdKNO70Tp1g2lfpYgiwIctR7ic4acBCDHBMYRcQ8mFlaBB1QsEywqrSIaFQ==","signatures":[{"sig":"MEYCIQDYfEMDKATtwGJoskthwQ8TLoEC017RuxE30VxEFN9pKwIhAJ1IUXKP0uwXk2A94WsDElfNhzRPANomQs5sxsXrky8a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29012},"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":"e0403eca519a995e9af017b5edf8b8e907416f97","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.7.0","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"@csstools/css-tokenizer":"^2.3.2","@csstools/css-parser-algorithms":"^2.7.0","@csstools/media-query-list-parser":"^2.1.12","@csstools/cascade-layer-name-parser":"^1.0.12"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.7_1719698374197_0.10220917712604871","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"postcss-custom-media","version":"1.0.1","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-media@1.0.1","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"1490e7eca837697bf2b402298a74ecc66f0216c7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.0.1.tgz","integrity":"sha512-BSClNdaDlEJSbiOsH9o3J+NLvInxoekDEAxDed8Yjx+WGFtN2WCkeNTSbaC9C7Mj6TlesmkJIX4+7CiTAhYgAA==","signatures":[{"sig":"MEUCIBxjjZVzibDi3/Y1Ix4VwMPSK9yMowms0GoWrrYRk5wAAiEAhZsMlIe2F/9NMD3hqLeTB764wKd1JiwpyyQiUfpvRfY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"1490e7eca837697bf2b402298a74ecc66f0216c7","gitHead":"bbecd0ca415a2de799e0ce894835b95c5203530c","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.0.0-alpha-5","description":"PostCSS plugin to import CSS files","directories":{},"dependencies":{},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.2","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"10.0.6":{"name":"postcss-custom-media","version":"10.0.6","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.6","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e194ad7c9190390c20515d45661e9dcaaf031e84","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.6.tgz","fileCount":7,"integrity":"sha512-BjihQoIO4Wjqv9fQNExSJIim8UAmkhLxuJnhJsLTRFSba1y1MhxkJK5awsM//6JJ+/Tu5QUxf624RQAvKHv6SA==","signatures":[{"sig":"MEYCIQD+flsiVxlFnebzE+fBc+Sl1G7v7Wd5YGy/+sS/NSvrBQIhANGq24S4haBy5Cd54ZRd9KMHIpp54GYMpNSY7UypG4EQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29017},"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":"bc7be9c7fb1e67b023655f1e3bcf687a1770a153","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.5.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/css-tokenizer":"^2.3.1","@csstools/css-parser-algorithms":"^2.6.3","@csstools/media-query-list-parser":"^2.1.11","@csstools/cascade-layer-name-parser":"^1.0.11"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.6_1714857310962_0.1776136200870062","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"postcss-custom-media","version":"1.2.0","keywords":["css","postcss","postcss-plugins","media queries","custom-media"],"author":{"name":"MoOx"},"license":"MIT","_id":"postcss-custom-media@1.2.0","maintainers":[{"name":"moox","email":"m@moox.io"}],"homepage":"https://github.com/postcss/postcss-custom-media","bugs":{"url":"https://github.com/postcss/postcss-custom-media/issues"},"dist":{"shasum":"59a7c5f73699e60465dc380a76886fd3892cd1e3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-1.2.0.tgz","integrity":"sha512-U6Vvo2AOnQBvQw+GPbx1unEIjQxf2RGEhkWBdYBEIg7M8ktIMTk5fvu9JlD3eoso9P4NVJ8rnslZIwUFjsV2PA==","signatures":[{"sig":"MEUCIQCnSl/MPcUrwWp+2jyk8AD9wKW7yL0qkziq9x/eyDwRnwIgXahIPCHKzCjofbnHb3mlyUGjmMT2t7H0K2WVkTjsjMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["CHANGELOG.md","LICENSE","README.md","index.js"],"_shasum":"59a7c5f73699e60465dc380a76886fd3892cd1e3","gitHead":"eb662898563e89f8897483e26fa9e8f50985b154","scripts":{"jscs":"jscs *.js **/*.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js"},"_npmUser":{"name":"moox","email":"m@moox.io"},"repository":{"url":"https://github.com/postcss/postcss-custom-media.git","type":"git"},"_npmVersion":"2.0.2","description":"PostCSS plugin to import CSS files","directories":{},"_nodeVersion":"0.10.32","dependencies":{},"devDependencies":{"jscs":"^1.5.9","tape":"^2.13.4","jshint":"^2.5.2","postcss":"^2.1.2","tap-colorize":"^1.2.0","jshint-stylish":"^0.4.0"}},"10.0.5":{"name":"postcss-custom-media","version":"10.0.5","keywords":["at-rule","atrule","css","csswg","custom","media","postcss","postcss-plugin","queries","query","specification","w3c"],"license":"MIT","_id":"postcss-custom-media@10.0.5","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"npm@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6c1060d1ef9274374137244df4ef7e2d9290f063","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-custom-media/-/postcss-custom-media-10.0.5.tgz","fileCount":7,"integrity":"sha512-K5xuavEfqSK6zzdgg5J5FvHD/iRoacK2G5i861jtphCBtelXvuOzuIFNTXyM9GEIQ31IXyfdCfklyU3r5425iA==","signatures":[{"sig":"MEYCIQCeDA7EsbLC3A7F4TXz1v5YCfrgSE5DDA0jJVOK6GRCWQIhAItseIH5tmQ1s3e8TvX4UpOjLArWkyotbrOYIMuT7Ywm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29042},"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":"b886bc33dd824930ea657e945076032fe95e9774","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-custom-media"},"_npmVersion":"10.5.1","description":"Use Custom Media Queries in CSS","directories":{},"_nodeVersion":"22.0.0","dependencies":{"@csstools/css-tokenizer":"^2.3.0","@csstools/css-parser-algorithms":"^2.6.2","@csstools/media-query-list-parser":"^2.1.10","@csstools/cascade-layer-name-parser":"^1.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-custom-media_10.0.5_1714838876677_0.7374841337946652","host":"s3://npm-registry-packages"}}},"name":"postcss-custom-media","time":{"9.0.0":"2022-11-14T09:50:15.635Z","9.0.1":"2022-11-19T18:06:22.313Z","4.1.0":"2015-06-30T05:28:28.427Z","8.0.2":"2022-06-04T07:22:25.453Z","8.0.0":"2021-01-12T08:17:31.238Z","8.0.1":"2022-06-03T05:23:26.040Z","modified":"2026-04-27T00:33:14.568Z","7.0.1":"2018-09-14T05:02:29.996Z","7.0.2":"2018-09-15T19:37:31.706Z","7.0.3":"2018-09-20T20:26:04.287Z","7.0.4":"2018-09-24T03:48:23.782Z","created":"2014-08-12T12:53:35.932Z","7.0.0":"2018-09-14T01:37:02.114Z","1.3.0":"2014-11-25T08:03:33.158Z","6.0.0":"2017-05-12T09:24:38.777Z","9.1.2":"2023-02-08T08:35:47.770Z","5.0.0":"2015-08-25T04:56:49.290Z","9.1.3":"2023-04-10T11:03:59.143Z","5.0.1":"2016-02-03T06:55:34.226Z","9.1.4":"2023-06-01T13:46:49.763Z","9.1.5":"2023-06-21T07:50:10.175Z","1.1.0":"2014-09-30T04:37:54.867Z","11.0.1":"2024-08-18T15:50:51.225Z","11.0.0":"2024-08-03T21:42:23.160Z","11.0.3":"2024-10-10T12:27:48.712Z","11.0.2":"2024-10-04T17:53:56.475Z","9.1.0":"2023-01-24T08:51:12.601Z","9.1.1":"2023-01-28T07:34:03.951Z","4.0.0":"2015-06-17T06:45:34.497Z","11.0.5":"2024-11-01T21:49:18.351Z","11.0.4":"2024-10-23T21:48:34.770Z","11.0.6":"2025-05-27T10:50:57.185Z","3.0.0":"2015-01-29T06:24:51.637Z","12.0.1":"2026-02-21T15:05:44.564Z","12.0.0":"2026-01-14T07:33:59.418Z","7.0.5":"2018-10-11T12:57:43.660Z","7.0.6":"2018-10-12T12:46:28.680Z","7.0.7":"2018-10-19T22:27:18.295Z","7.0.8":"2019-03-30T06:03:01.037Z","2.0.0":"2014-08-12T12:53:35.932Z","1.2.1":"2014-11-09T06:29:51.674Z","10.0.4":"2024-03-13T18:57:24.004Z","10.0.3":"2024-02-19T21:50:21.737Z","10.0.2":"2023-10-09T17:40:02.757Z","10.0.1":"2023-09-18T20:11:55.898Z","10.0.0":"2023-07-03T08:31:18.210Z","10.0.8":"2024-07-06T09:38:10.266Z","1.0.0":"2014-08-12T13:33:42.691Z","10.0.7":"2024-06-29T21:59:34.372Z","1.0.1":"2014-09-16T04:15:53.296Z","10.0.6":"2024-05-04T21:15:11.119Z","1.2.0":"2014-10-01T05:09:04.073Z","10.0.5":"2024-05-04T16:07:56.837Z"},"contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Maxime Thirouin"}],"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media#readme"}