{"_id":"postcss-env-function","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"dist-tags":{"latest":"8.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use env() variables in CSS","readme":"# PostCSS Environment Variables [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[<img alt=\"NPM Version\" src=\"https://img.shields.io/npm/v/postcss-env-function.svg\" height=\"20\">][npm-url]\n[<img alt=\"Build Status\" src=\"https://github.com/csstools/postcss-plugins/actions/workflows/test.yml/badge.svg\" height=\"20\">][cli-url]\n[<img alt=\"Discord\" src=\"https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white\">][discord]\n<br><br>\n[<img alt=\"Baseline Status\" src=\"https://cssdb.org/images/badges-baseline/environment-variables.svg\" height=\"20\">][css-url]\n[<img alt=\"CSS Standard Status\" src=\"https://cssdb.org/images/badges/environment-variables.svg\" height=\"20\">][css-url]\n\n[PostCSS Environment Variables] lets you use `env()` variables in CSS, following the [CSS Environment Variables] specification.\n\n⚠️ Custom Environment Variables were never defined in a specification and we are no longer including this in `postcss-preset-env`.<br>\nIn the future there might be renewed interest in Custom Environment Variables.\n\nWe advice users of this plugin to seek alternatives such as [postcss-design-tokens](https://github.com/csstools/postcss-plugins/tree/postcss-preset-env--v8/plugins/postcss-design-tokens#readme)\n\n```css\n@media (max-width: env(--branding-small)) {\n  body {\n    padding: env(--branding-padding);\n  }\n}\n\n/* becomes */\n\n@media (min-width: 600px) {\n  body {\n    padding: 20px;\n  }\n}\n\n/* when the `importFrom` option is: {\n  \"environmentVariables\": {\n    \"--branding-small\": \"600px\",\n    \"--branding-padding\": \"20px\"\n  }\n} */\n```\n\n## Usage\n\nAdd [PostCSS Environment Variables] to your project:\n\n```bash\nnpm install postcss postcss-env-function --save-dev\n```\n\nUse it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss')\nconst postcssEnvFunction = require('postcss-env-function')\n\npostcss([\n  postcssEnvFunction(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */)\n```\n\n[PostCSS Environment Variables] runs in all Node environments, with special instructions for:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- |\n\n## Options\n\n### importFrom\n\nThe `importFrom` option specifies sources where Environment Variables can be imported from, which might be JS and JSON files, functions, and directly passed objects.\n\n```js\npostcssEnvFunction({\n  importFrom: 'path/to/file.js' /* module.exports = {\n      environmentVariables: {\n        '--branding-padding': '20px',\n        '--branding-small': '600px'\n      }\n    } */\n})\n```\n\n```css\n@media (max-width: env(--branding-small)) {\n  body {\n    padding: env(--branding-padding);\n  }\n}\n\n/* becomes */\n\n@media (min-width: 600px) {\n  body {\n    padding: 20px;\n  }\n}\n```\n\nMultiple sources can be passed into this option, and they will be parsed in the order they are received. JavaScript files, JSON files, functions, and objects will need to namespace Custom Properties using the `environmentVariables` or `environment-variables` key.\n\n```js\npostcssEnvFunction({\n  importFrom: [\n    /* Import from a CommonJS file:\n    \n    module.exports = {\n      environmentVariables: {\n        '--branding-padding': '20px'\n      }\n    } */\n    'path/to/file.js',\n\n    /* Import from a JSON file:\n\n    {\n      \"environment-variables\": {\n        \"--branding-padding\": \"20px\"\n      }\n    } */\n    'and/then/this.json',\n\n    /* Import from an JavaScript Object: */\n    {\n      environmentVariables: { '--branding-padding': '20px' }\n    },\n\n    /* Import from a JavaScript Function: */\n    () => {\n      const environmentVariables = { '--branding-padding': '20px' }\n\n      return { environmentVariables }\n    }\n  ]\n})\n```\n\nSee example imports written in [JS](test/import-variables.js) and [JSON](test/import-variables.json).\nCurrently only valid [custom property names] (beginning with `--`) are accepted.\nNot all valid [declaration value names] are accepted.\n\n### disableDeprecationNotice\n\nSilence the deprecation notice that is printed to the console when using `importFrom``.\n\n> postcss-env-function is deprecated and will be removed.\n> Check the discussion on github for more details. https://github.com/csstools/postcss-plugins/discussions/192\n\n[cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#environment-variables\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-url]: https://www.npmjs.com/package/postcss-env-function\n\n[CSS Environment Variables]: https://drafts.csswg.org/css-env-1/\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Environment Variables]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function\n\n[custom property names]: https://drafts.csswg.org/css-variables-1/#typedef-custom-property-name\n[declaration value names]: https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value\n","repository":{"type":"git","directory":"plugins/postcss-env-function","url":"git+https://github.com/csstools/postcss-plugins.git"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"license":"MIT-0","versions":{"2.0.0":{"name":"postcss-env-function","version":"2.0.0","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@2.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-env-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-env-function/issues"},"dist":{"shasum":"39b886bba4653462e399fad30998e4b6b392eb85","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-2.0.0.tgz","fileCount":8,"integrity":"sha512-8CQyi63ayr1EbPJdPjBb9YaidTfNYFWVuCE3yOjIvny5azWlPfTA5vHnScVvRFy0Q7JAm+qoqypzo2eE/lMbVQ==","signatures":[{"sig":"MEUCIF69+nFxZMTfB0l6lkeRdzA0zEgfFunKQwzwBnuHtADyAiEArZ23apG6fqg9HOBco7enlLBkcJzK+Q81f6pzVv3+Yoo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboHKQCRA9TVsSAnZWagAAeXgP/1O8m9ObkJFdeItj0XEK\nmW+9jxDmsz8TnQPtN4pAJK0i4chfg5IDkN+upykoMF+dcOLk2eNCfF8/PRsZ\nfoMit9SqNT91qIiyyfc5+0RUtw0oOsG5lYclOw4jaul9OLepvB7iP2gN8Jks\nbu4CegYG5PRCIiLYk+ZMtcgQY0LtzRKFUlfV/XbEnwFx4BrMjLpBKjsF9Dxw\nYGfNZjGIvKS6v5gI9mbMoQuurOB0dh7G2/Y+Yv7LY/GhWmDeUNoXF04Qy9da\nsjYKM2qHfLdE2XsuIHWrgfMa+AZs12TxJ43oMXHnWzf39co3mljwPcHcuJPn\nUkuKK7/Se60D9miIckLWTaqGFY0dpNGcfAqAuZM/R09w2YuYhNHyrBHYKdoX\n5IxUfbdUzngNEf/H3B4IvCNHn+28thGmgjr6HF3Sq+ApugVdTChLzRmeQ51D\niVMGixWlZouqYQEYJEV7CvNH/suQaKCr60iWlPTmhH28cmhFiEWTe5FInxii\noV2HuQFlWn5jDohfglccc5sVXpTl17JMAQAevbJkkT7ZOPp67akvfOQuFdqX\nlNmfLn+y4+owp+r0J3iTBdJcPd/qNRk0z3C4oUylZ3AprFq7PrIIn/MMEWRx\nORhZKZHSO86tX2JvhDnF+ZlNf8OL5RF2sE1j7fIR/VZlUsVf7rI2OR+VQQb/\noB6J\r\n=4ZEb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=4.0.0"},"gitHead":"20f253f30dcfbcec7044daa3d5e05b3bf4349756","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-env-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.0.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.1","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_2.0.0_1537241744480_0.10502087719307829","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"postcss-env-function","version":"2.0.1","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@2.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-env-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-env-function/issues"},"dist":{"shasum":"d1f38482f79e3a9840ac4ec16da229bd3032b7c1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-2.0.1.tgz","fileCount":8,"integrity":"sha512-INAcRrnkhaJGwRxADTrhzX3H3XpN7BqKHgEKCT9UNSFVHg8SDQVS73R1duKVNCLySkwys290L2eL5vA0uoQnUA==","signatures":[{"sig":"MEYCIQD8jV7+lcZbPzyNvdg3dZAOzUpHtW0XjBr4XibjNdIOQwIhAI8vHPLTbQZ9nOZBxUbxsrcjtpLlb306wIK6oEotYdpd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboSJQCRA9TVsSAnZWagAAdLwP/0X/pta59liRDRTHcdSu\nppz/N5TlEZ7M0noUD3bkapC/7stDLFb7q9Qlp8X0k6kdYJJNpBw1djc2SnOe\nGMroPQUW3m8QNXshQbF3QRyfOphY9KXI3CAVtL/yE8AyeOhIyX42aWBY8adN\nTYkxHCGc+M5FohBWq9sQeo/Zx7ShQ7yx84SruKUWCdFLj99jkzEqQZW4TaI8\nk2U5D8PveR+LVbf9TTbJFauawp+3LZ1gzazgOjLdeSaz4VOa9w+Otv4BWmu+\nZx67iTs5CMrhCZu2W/9LKx7e/gS3uDrL56L6OlhjhIz+oo7NQ2jJhJOfZ0W4\nFmJlDYt/sXEOAyT3pK8Uu9MWKfNg8N5PPdjDlsBP8MTNmFVdZlgy/MdacIJ8\nXeaefQIzUZNVJi6oTO0XDXiIakppYwIHy7HZGUReLdpWyEHWzAxhI/NiN/Oj\nuCxV+d5pQqrulpEUROi4Xb/dL5RlqbOAMtKtJ5TzL/mr9DSG9VlSKRLIliVP\no9ggr2VpwVweUAPk847b0gnqr+xwTwHD46VOtYqjxdn09ze/KNVUjXE3RPJT\n7iqLsLot1+3GEuhir+jBbBRjI7mzfnudgWFxi1tjWQNt1UOrofyPyOcLtnKq\n45xodmpEJoHxqB9DYObZkgqItLMwJ3dCvj6KlYZ1oLRyCC0G2xiUIB7JlLlU\n3YYR\r\n=BvdJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"00063ded17b1ccd4c68c676f5fb7a049f69a0aa3","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-env-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_2.0.1_1537286736195_0.6756069316835029","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-env-function","version":"7.0.0","keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-env-function@7.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"82d3ddb6cdecec8a6a7ffa0837f3b6c24377446a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-7.0.0.tgz","fileCount":6,"integrity":"sha512-RH50KMbqIg4X0XnIwGA4Y5T61Y5wF7DNSG53RSpxtyM14G+lJvmE892+Zy1mXtjLp2DWico2Xg/eWNPwTDPJ9A==","signatures":[{"sig":"MEUCIQDk1jDr2H8S1U6B49FAhRzR1TfBSVkQzp2eAG9H7KOgugIgehK0rI+3W5VeBfY+X5hkykFafQE1sDvAYBBcU7BkCfE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12918},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":">=18"},"exports":{".":{"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":"0e966a19079bbf648552c140b97cd0d80b92bd79","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"10.7.0","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_7.0.0_1722720993529_0.45488344051946394","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"postcss-env-function","version":"4.0.2","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-env-function/issues"},"dist":{"shasum":"5509d008ff0f069fa18bd2eace4f3fdb18150c28","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.2.tgz","fileCount":5,"integrity":"sha512-VXKv0Vskq7olS3Q2zj38G4au4PkW+YWBRgng2Czx0pP9PyqU6uzjS6uVU1VkJN8i0OTPM7g82YFUdiz/7pEvpg==","signatures":[{"sig":"MEYCIQCWOIN5FET0SqccJjlRwP43OGcilW8G+HHQIRtcfa8jVgIhAKHvD/9Kv9gty8LXk9Fp435rr37Hrv+rq3H6MuqsPeEc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlosDCRA9TVsSAnZWagAALasP+wdHHDxYU3LNjazrFxEp\nmSxke63WmV2EnhwR5Th1aDsiRQX03gWNyzbgW3B78cqc03Zf4X9bl5KwfAA7\n8xIcG8NxSevwuathKV9qXZv55GPzf68GNW2hmjkvDzZHGkfSAMA8Pp+Oa7Xp\n3EJvGaGFdiwYgOsAzLmTEYspJkShLXZbtM33FL0uC3/suASoEiRQWDgJ898E\nZ3sqMKnVHlpTl6jFzEEB8sSYlqBvNrtNDQggvl+4a3Xc/by6QSZb+wiXj7IU\njoAE3fo/Z6ANCyEoQ79KCTXUHRVzLYvn7/W/oyf91fg2G9bEQpd4LW77Lahc\nGj+5Z9kPt7yE4qGCdjk1YJV9pFxl5FthYyq6APKRWPNdNhmCbe+dn+YN4AlU\niadL4bsfr62GfYMy7GXGUvuJHS0NmiyUFGmAX3Wu2ke05qRL+zo6zCbLGxuv\nAUmg46lPAEZf0H6jsehEJfXAf94qk3V48hMSctPiIfyZRkyTIyhzu8f5Dhrt\n176soXonKEIF+j2+hkBjd0d7G6HV8wmWiLpFUdDJw1MPv2QCLWXVJEYNjf06\nx1nfYTHebBjbsVo65RdCeC3Bb+4Sd0F7LegKmROoN0OLxJbBur4XIyD5xnN2\nvUNFudf8Pt1DbDjdxL2iTpLkz1Qmn1tsDC7e79UqkfafvbG31/GIKvkmFjKZ\nhltW\r\n=xkwx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs","format":"cjs","exports":"default"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["@rollup/plugin-babel"]},"engines":{"node":">=12"},"gitHead":"751f50d26c1a9ec74ebf3fd111ffc6974d6cb734","scripts":{"lint":"npx eslint --cache src","tape":"postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-env-function.git","type":"git"},"_npmVersion":"7.24.1","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"14.17.6","dependencies":{"postcss-values-parser":"6.0.1"},"eslintConfig":{"env":{"es6":true},"rules":{"semi":["error","never"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":12,"ecmaFeatures":{"modules":true}}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.1.0","rollup":"^2.58.3","postcss":"^8.3.6","pre-commit":"^1.2.2","@babel/core":"^7.15.8","postcss-tape":"^6.0.1","@babel/preset-env":"^7.15.8","@rollup/plugin-babel":"^5.3.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.2_1637255939412_0.5537650886699101","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"postcss-env-function","version":"4.0.3","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-env-function":"dist/cli.mjs"},"dist":{"shasum":"cd56e3898d87b69c35d9b44b1df050a59757b803","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.3.tgz","fileCount":10,"integrity":"sha512-RQ0CwXX161FLuC525Lx7VqsHXSPQvgErgOMcbfuAKPq1hgHDPJLemowVaPuWF4E3IO8rgUbStaRLGTM5VlN/vw==","signatures":[{"sig":"MEUCIQDy87IOX8JZKuBpSpyFz6WvmfTN28v6KfhHCBRUaABrUQIgboLPRx0I2QgR87jDk7LfjtcbOxykbgxjr3fus3AsIuo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxL6CRA9TVsSAnZWagAAyNoQAJhc8YXVQ+jpIpBaO/n8\nKPN5CzQxN7epTVb4AVnRqfmvBuuvzDCuspC2W2fa0gunqm3gdIbVy3LcjMsW\nsvRQDKrv3VcyLNhGHnU909MiJOV8NkwoFXkcIOhgh6k0hRX0GQNGFvHpjjOF\nrxyPqIxHQHdGF9ZPEbtQ0vHddBpDgDmCPOnvn+CtXDe0wqEcFFrOsaOSofam\noamQ9RXFBqAd+9PguNB0RgP4kbwWpwgn2KWYSRob1uH0ktCgVPCPFDG4ruJH\ncQpF92RdclW+nh29GAEINpukT0vMyyVz/8A2+OmEd+FYw2COKd4d1Q6ftDTa\nsrffjbx1JlfEpDKeLf5WOaiCtA0b4XqY9f/s1p6IWUSJMenfdNfnYCjV2JnI\ncMVCmRV2aw/OsYJLQqaniYkjqdMAABi998dSXte1wMx+lvGfBXu2vD+bh4U9\nIL1uARa5M3WW/jOySS49t9Te5JkYKzfhsQUFnP+LTILTg55UZnEnkLYA6WOK\n1w3tDwFtSucpg25+RCvzqr+S1SdicKiJ+0wqCgwKrOPbvhZ+s90i3LXYNPYQ\nJEbbm/X3u82w/5enfqCBM7ZFhX2lrRyYAed8vyRSzL0Qk6yhdS5f08S+4RTO\nEApsGRdTBUlnYVvSuTTfpDbLJ3pSravd3+oCPPE5ricHRsM/GX+TQhSmA4sB\nfLy+\r\n=jbI1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"be5dee87cb5305238fa30397b7a8e3abadf217a5","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.1.0","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.3_1639387898219_0.057226430582479004","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-env-function","version":"4.0.0","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-env-function/issues"},"dist":{"shasum":"3f049ceb8449ddfe111dd547b3c530202e335a7f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.0.tgz","fileCount":5,"integrity":"sha512-AFUWcNBtXuBoPvqjivkzB1XKszxNiHE+t/1ZR3djTJ4Dk73qLKG/EZpWinjL2MNsJHk5dhCBOU89wXVfKhLmYA==","signatures":[{"sig":"MEUCIQCLRv+GKlyzHY5iENs/aOf38eYQBmZV4L07TD6ulRj1+gIgOb5YeD/sTwNyfRYIbe23rPwkF9O/lWc/WsTqObgrTP8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26717},"main":"dist/index.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.js","format":"cjs"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["@rollup/plugin-babel"]},"engines":{"node":">=12"},"gitHead":"74fc649861a83b93a1b3af9c5f2274644d6edc27","scripts":{"lint":"npx eslint --cache src","tape":"postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-env-function.git","type":"git"},"_npmVersion":"7.20.3","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.6.1","dependencies":{"postcss-values-parser":"6.0.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"@babel/eslint-parser","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","@babel/eslint-parser":"7.15.4","@rollup/plugin-babel":"5.3.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.0_1631885931665_0.35142548200383916","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-env-function","version":"4.0.1","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-env-function/issues"},"dist":{"shasum":"9a870199fdffe60a3354165b26f28820a3d100ef","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.1.tgz","fileCount":6,"integrity":"sha512-Wc9fNj9+sRYsVxB2/UvGeS3rvZsA9MPpmT7R4t0WHOdBzQjnd8vrmZgPKcA836/M7pcaaISiOqdQVrh/8x0o5Q==","signatures":[{"sig":"MEUCIAILaSXfmtfjEresoQ3gAeikiD9OPrruzfBBMpidtJkaAiEAt3uNwnsgRhBTKfY6MvqS7159EKi5Bcs6hF8MegO75No=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27589},"main":"dist/index.cjs","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs","format":"cjs","exports":"default"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["@rollup/plugin-babel"]},"engines":{"node":">=12"},"gitHead":"019c35fdc518cf0f76bd65d2c789cf57108cb96b","scripts":{"lint":"npx eslint --cache src","tape":"postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-env-function.git","type":"git"},"_npmVersion":"7.11.2","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"14.17.0","dependencies":{"postcss-values-parser":"6.0.1"},"eslintConfig":{"env":{"es6":true},"rules":{"semi":["error","never"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":12,"ecmaFeatures":{"modules":true}}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.1.0","rollup":"2.58.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.8","postcss-tape":"6.0.1","@babel/preset-env":"7.15.8","@rollup/plugin-babel":"5.3.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.1_1635509017657_0.3307771666095072","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"postcss-env-function","version":"4.0.6","keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.6","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7b2d24c812f540ed6eda4c81f6090416722a8e7a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.6.tgz","fileCount":6,"integrity":"sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==","signatures":[{"sig":"MEYCIQDreJpKIHH3Roxj8zNzDSzQ77fsbOKYFe3lGZpI81kEOQIhANeyrLdTbBfUFI4vCaYzQgsSL8bOND305/wMZ4FEKvFw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNhzpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzxA/8CFonl7f7UcVoyecC9VtUzIHoMPptpVG0Ws8SoFAotJ87PA62\r\nK1ht7MW9ERknEjno76g0wd7Yu5yts1nFnZfxQ3B6E2mcs/g3CJm9zy5sh06p\r\nl/B58XHNwxISia6CMk+TM4l6mNoCkLUABuj+RcQHGB8x3OEuzR2VNu2bzA5t\r\nFBFl7olRl4QknfWHyzLt4LG7NnftRivK8SX7M5u6ng2XQpZeNDnwWpnSVplb\r\nrKedEZradI+sR1hj5zuEqbw06TVqKymxv67aYSFcDgYLAwPNhM+eoeNon30q\r\nsqZJVZuNy1PNeqSbJvKtzsOBFereNLmLphXKQmvcJGwQXWDMTZGcfw3+u+L7\r\nhGAzGofhYsSbPQ49qijIZyTFzSTRfR8S0uO2P+AsrvY+p4HE3QDDL+GP6omT\r\ni3dnMtvq0HgrCB2/wmzcew2n3Dg7rXkCXSTGQ4WPD+5bCRaGcJdKfQQgXMmM\r\n5k22Uw/cPo9cPgpA6lrUuGAdQUrKj5UuhH4g1SjB9hZGH/emSj/+LDjxLP/B\r\nHdsRfve4Nc1brKebCDbk8ThAo5vrWx27wqWsBbvsiKpLKqnOS8VLNbHNmrUK\r\nANYU4uP2/iyAg4JsmPfk+LDGFphBlTTe0SSHz/vdMVNZMtZ5efdFYhH0zICs\r\n+9pDSMpz58W9mzxBdJrcckCq9D45kSDRA8g=\r\n=Zej3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"99a732a41a7c83b6ac5da44aa96b85881f598431","scripts":{"docs":"node ../../.github/bin/generate-docs/install.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":{"exportName":"postcssEnvFunction","humanReadableName":"PostCSS Environment Variables"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.1.2","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.6_1647713513215_0.7557344337139731","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"postcss-env-function","version":"2.0.2","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@2.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-env-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-env-function/issues"},"dist":{"shasum":"0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-2.0.2.tgz","fileCount":8,"integrity":"sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==","signatures":[{"sig":"MEYCIQCEEBHLuBxLJ8mQgr2VCTkbjBhmD9M0SbVqO3l59UkwyAIhAOgswrr3G3HKR+V4Nn7d5S9F4xWteN31+kKQVUyY1e6E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpAA3CRA9TVsSAnZWagAACxAP/0ISvqt3i7AjuGNtrtMh\nTB0F/uKYsjXyWb327aRvS6pQLggPtqPuoI2JobnnA7VwoKOV5rpD/9DS/RPu\nu3nvnfcFZapXnCOLtDBb2ciEip9TMJ38uXvVe5xq50QLRF0ZX+s2C6r/gSiV\nL/QDOYS5TFN0SwH1ZukEUp1iB+ibIF1K7uVRU9Is7DmCgrYgdmEV1DTg/dGw\nXNXXgi0ZNzh9HA1oIC+X4qyVFLEbfEEqTmUo5/n2Ygkd4D8ReJwZC6k+fLMi\nV8dA8Zme4LgMkVYewJ9BzBdqpatWX+nfBwPMz0dDlFn52cp9xw5WyevBPvO/\n9bPVVTckBKXo/XBD9NjLg0gJoIFA3ZGNLxpiuIwCvo6OcZlPN5nIppOUbG+C\neP8TghfcriByoS7x99WVxwnfipLxr8Zp4C4DbPbGtl03fdk42c3xHbVb6EUg\nFl5H3/Yl66SXvy19fz0sjl58/Olja3dWn9WULXxbKg0Hf9tq+z3r2g0+IMZo\ndmVMa0WGe/jkLqS6J0Hy723IIvd0GUB54jo/hXbwumFZs5g95bMVWpkkWtTk\nkdzYbtGMnkqdNEHt9RWLuKYs50SUqH+f0Ya2LOWde0/QMKfkj8ZHWo8saCTD\nRYE0a1G4MzSErK4DySPzJWVLvLqahbTQteoWPfOyNDj7phTfFaY15IMC8gU+\nTgjl\r\n=2W1M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"ff7a08d9a02390bd26b5233884bb4a7fb2558f20","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-env-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.1","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_2.0.2_1537474614632_0.19417476030470504","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"postcss-env-function","version":"4.0.4","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4e85359ca4fcdde4ec4b73752a41de818dbe91cc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.4.tgz","fileCount":6,"integrity":"sha512-0ltahRTPtXSIlEZFv7zIvdEib7HN0ZbUQxrxIKn8KbiRyhALo854I/CggU5lyZe6ZBvSTJ6Al2vkZecI2OhneQ==","signatures":[{"sig":"MEUCIA2qMYR92PiIBqXg9kk9vl5oe8L8zIzIdfP/yPnrypFPAiEArRYzQiSekPaeCKkEEBY/XsXRNjl7rCl4RIsj8gOvaos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cdHCRA9TVsSAnZWagAAgVoQAKHHkBLP//20pqcmYsmK\nYixJ+Naroov5nupdvhIXOvH1b5Eh0kstAjHIoXutOUtagoisohihsXD4KVat\nW/LgfgMkdiEK7PKKUz9L/R8S3elWoTYw3AO2AlYIdbgV3v14HzxZyZgNUw55\nu2iu3FyhWS0AUxpiSOH7efg4mizd9OwfpqCPF4/GlcR2cKE57q2Gdtd8tpKB\nVZEK22WIy3TAliBQXCVXDl3l4dhBCfPESoZgV+GCAjcT7WBQzck05hmyCLhR\ngaALD6PhGCeP/G7T9pHzsdSLKp63LPbCWz5UuQ5FKJGxTrk5dy+v+lG+38+l\nGp3LZBLSHIyTM3bYvD5tR1O+Q3Kt3t1Ss0yuma26iAn8sTpMxA0eLNtA3AS1\n53RoVJiPagILjmQfhcPISTGxfQgRr2S+EwC9xQzJi6jd59NYBWr4N+QLqp6H\n5hBFd6FgloMKt3aR2i+ZUSw8lJGAxy9U6adYNcVFcH6yErXsr5sQ+Fn41a37\nOGBsRmiJn5iIliDtLz2dr8yLqXGkTG9+T00NZ/zR9jBWNgAcrENSDRoRg7Se\npU3H/atwkSvQ1LhyTygzbSoNpIG66k9nzz+g3R/SbDEa6c2zSUg/NM5e4cJC\nh1sBbCd9EqXsNJFUJypTKjaE6HMMjpNtt3blSPj2O0WEDRyPJqj0imVGFX7x\nC6Fk\r\n=pa3l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"e5e27f6e260cae5bc04db4ddf02bca0aa31041dd","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.1.2","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.4_1641137991710_0.06888475919647186","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"postcss-env-function","version":"4.0.5","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@4.0.5","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b9614d50abd91e4c88a114644a9766880dabe393","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-4.0.5.tgz","fileCount":6,"integrity":"sha512-gPUJc71ji9XKyl0WSzAalBeEA/89kU+XpffpPxSaaaZ1c48OL36r1Ep5R6+9XAPkIiDlSvVAwP4io12q/vTcvA==","signatures":[{"sig":"MEUCIQDGnk0Qcpl6bCqGKeFUDFJnoXtLh1uB0dlDg1hDjFyq9AIgXwi1do/7Fdly9CS4Nn+8Ye26hZrxliLNDP3dzXpAmWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17872,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/q5JCRA9TVsSAnZWagAAml8QAJv+BPhWHfbrZxXRL+Jg\ni2+qVWudrK0Sy+gnm4s+q1sAojnaewy/mxo2Y8L5Sh0gXqOo/Z2FU/5m28ce\nrM18vZO1qZ5SEgvJTtJkl+MFuOleNOk8O+n8lK6RizB1r4Jdni4nf1BL5g8n\nbRGq1QQa/Q2uhZ4QoQGKISr9L6azoOLtB6B6PkUFLv8kloppEsJe2OZYPE9y\nyeSUChq/h2weLfqwU8AymBKFsE7paTTFFifkvOWOb0PAlstNrkdHp2F7mMp6\nNX8nVAV3eMtXN8fuTTsjG8V6t10QONJHU+g/OqLZGyZqdFEcJnZRmoWvAFg6\nk+x9IP/Vl+OwGjrVnvjBjrJjqD5OHl5Oc4EH5NckmhwvHiZjqyE7NasIRTwh\ngjivTzlHtFQViSAlT9HWAaZIzAn8eEGUY3OHEKeEBsnBKnrPWeGOhH8SJnW+\nVAVhyets3eV8mJvUzmZLMuxJBLMRItJ6B3Ry38c7DkDp7+2eknIJFiw9DjnC\nlPofRLfnRUrg8UmTL6Ttxkza0FsoDF3C/u/zoRCSEZdpd/o05+PowEc3JPa0\nC8XITSvNYMetawn2X2XjWxgInMIoK7ow1EBIOuaxGpWsY05EECJcn2NGTzbR\nzBMzFSj4pCbmjeJZLONO4rVewLnPR2kB8hSkycKlpN4xTe7gZL7yW1eaUxVW\nD3s9\r\n=Xlz5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"7198f33593837f809c500dfb390fd3acc1a6c0b9","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.1.2","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_4.0.5_1644080713309_0.08122678555253904","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-env-function","version":"3.0.0","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-env-function/issues"},"dist":{"shasum":"c375a280d820f1f7d9289743ebc73d39c1a7b0ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-3.0.0.tgz","fileCount":6,"integrity":"sha512-I2zXO2Ej1PtG7VZEOo5Mg3q4JEmzL8je+DdRrQ1TjjXwxg8OluvwSdRLdp1o2jzRSiiAVCdGN52O2ktAfhPk+w==","signatures":[{"sig":"MEUCIFnzM72zHB7dW5vkVliz6oiilUoTvlo8GP+VSQ+mSWXkAiEA0kHDsDrOsb+a2hZHs6jrOGH8Q2q96H88tqOPhOL/qnU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26358,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepYIKCRA9TVsSAnZWagAAshIQAKFYQBgkfzvKI6N6egsB\neP+Zk9xTprEkwlMSxzkXL252wnQRfwk+NB4Q35n8ugvWpkVIBZClox0ja4Rq\n0dsjyCYtTf2C1Bx6Di2KPXYnYfQdZwBUeYrBY5Vj4bIb1wu2yVfNalAdecmW\nq3MFqc4zDQIdOqJLFJxFxATERtM9UZy5AD34XeoUiZY5LfIPWVr8r5FDv6wS\nQ7S+wZTqen4lTP0w9n1HgiqTCAs9Cye/kTfqkGY/0uP7SC4e+Ydi3QwvYQ6w\ndz279prISaAqEvYAbi6iq9TIsmNBbkdB1P6d62cpHE7KsKQarYziR5ApXy0P\n8O9eouheLN0a5p+4BQcfwu7ZYs7FdYNC3LhKjM9dwLynxOUQngA9MtzhuA2B\nD2qyuDk97BOhTseL8Z5c7i0ouIsCtD4/vt+gE/mp0w+vOD3yxxL/YAYrUhyy\ndeu1FFynBjfbFXFQJL017Jxv5vAPIWDjkCiXtqNp+EA3tcacSvUQB/Xxs5y1\n4r+3ol7Xyg/EqIllCByTqafOur2DCYAuXv08efw7znqHH6Z3WCM4NE5a24Qy\nNbYuIQI6RPy6c/StqpaCdgtmH6lZzqKYl8PO32B30zT2ZBt+7zN49EFXfQRf\nqjMnpwZ1BN8m0s5oaeuLptbIZ/Crg8k8u2JzKWyujIbgJFQYnkCQROeT3eK6\nRqzO\r\n=4L8d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.js","format":"cjs"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=8.0.0"},"gitHead":"2fd564e01f89833d795575289a91792b5d95cb7e","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-env-function.git","type":"git"},"_npmVersion":"6.14.4","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"postcss":"^7.0.27","postcss-values-parser":"^3.2.0"},"eslintConfig":{"env":{"es6":true,"node":true},"parser":"babel-eslint","extends":"eslint:recommended"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^2.7.2","pre-commit":"^1.2.2","@babel/core":"^7.9.0","babel-eslint":"^10.1.0","postcss-tape":"^5.0.2","@babel/preset-env":"^7.9.5","rollup-plugin-babel":"^4.4.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_3.0.0_1587905033903_0.21954575764536477","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-env-function","version":"6.0.0","keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","_id":"postcss-env-function@6.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4f112714dd65ac39513f63dc3947d6a82b552576","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-6.0.0.tgz","fileCount":6,"integrity":"sha512-TUJB2UsZ8iJGbLx/2vIMt7z8s3E1eiF5mMw6eDo8/mktgkqkrTroBzDxzLzWn4siRjGoiV/NB7t755z8AVfchQ==","signatures":[{"sig":"MEUCIQDPvKOgIPs95YDT66ySZKj0Ymu+2k5GbByCYHmqew7k2AIgE0Jn5d1v7oQfIacMuBKUBKQIUbGjFmyaU5nEMPFTpPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14933},"main":"dist/index.cjs","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://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"1299ee53c6b535e3ab760559c747f802bc100bd3","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.cjs && 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.cjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssEnvFunction","humanReadableName":"PostCSS Environment Variables"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"9.5.0","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_6.0.0_1688371936869_0.3248980291313175","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-env-function","description":"Use env() variables in CSS","version":"8.0.0","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT-0","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"exports":{".":{"default":"./dist/index.mjs"}},"dependencies":{"postcss-value-parser":"^4.2.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-env-function"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"gitHead":"aae0cba3468a1b1804c4fdde703046c1c10bd421","_id":"postcss-env-function@8.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-iORUgBuibJSeT0jYvJ2rdz05Nx9zLr7j0MVzwsBN/uIN1uYKASK/lXYwdbfrgoiqsXvawkA2aYzIJ8UiD1AlDA==","shasum":"c4991069905fc2751bb9de133a213a5aa8bf6fa4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-8.0.0.tgz","fileCount":5,"unpackedSize":10176,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDnT4dZg5dxjVhTgBEgsdboMxS8VFxSCD4wyskazKpOKAIhAKqrnMBEsLAbzUIq6mkAABo1US25HWT5CkLOXf3Mc1lM"}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-env-function_8.0.0_1768375333853_0.04285257523956143"},"_hasShrinkwrap":false},"5.0.0":{"name":"postcss-env-function","version":"5.0.0","keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@5.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"d8fd5bbfcc58b10e06f988966ba18a41a2da606c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-5.0.0.tgz","fileCount":6,"integrity":"sha512-8FFoSvQlFrMlsbkiiCTQr4QH5aGhfTsEK8fJYAs1XttMV3FWztA94fFlyj5dRWBKCeTFSfY0kZz992DeTebsxw==","signatures":[{"sig":"MEUCIQDMG2VCbSjfrLjoxJiqgmZtiZ6upEO/V8PdAsMn8hhQ8wIgLBcCIUEeFvyh1SzGNssTUbDePz0lS8JQp79GUIGvU8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz57AACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqrdw//Rems8nkoLVV1iSqZ833bvosSlRbsmKdyaGtYLuuoVnHNzimS\r\n9RQk5KpSjARDuM2xX8lSn9ZSdBMqjgqoGCV8rNKLI/r49HFPZ0OOp+n6ur4e\r\nQIJ+hPg1NoXTxaUngyT+1a13y5aJAaVNHyoJMHcIXADZFn6l3e/p6I6OOoMX\r\nulvGPatL0SZUxbm6Dt2lu0xIydAHtUsTMseCP+etNZq+UIGLQdz0UbalCH/A\r\n7tOmUD5nHUitGV4JaoS1md+et/s6LKy+KuzMmrs+l3yhtGfu6Zdusp6zhqbm\r\n9+8QnmCY0PnkaT0uvA9jqsYWCLM4Axtfh4J2plvkT/2ev6F5FWgkqFEykYay\r\nOj9hgAcMccblMPfyev99Sw4ykEKl/tbGeWJd9nzQxbTWzcmLvi5EgC63/Lh5\r\ndrgWTlzYk+P/iL7qIJ3eBLMKPiu1riqaCGP5utaggxYf1g/198Lcat+ULebK\r\nTO9XAlJ4vXwFTBNCXGu5QHF/5eodpUU10jZgLUK68uzBAx86ITnQKnwKDNBX\r\n2GN7Lpg4H2FzbfqQf4cu4QaKYY/ebG5PeB/h1l35u15VgqAeF++7NZ2VfjXL\r\nv4kvGu6KnuseUbGsA8Csj8mroNe2qF2+NKfpfCF5ojm1NHRXv3QBqfh0kjeY\r\neotbvOX+N5uWiHt+LFTXW0dQI4TraszPC58=\r\n=8UXo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","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":"20105629f1a5b89b01fd0fc815994dc6c2bffcc8","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.cjs && 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.cjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssEnvFunction","humanReadableName":"PostCSS Environment Variables"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.1.2","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_5.0.0_1674550976405_0.4812652250563818","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-env-function","version":"5.0.1","keywords":["constants","css","environments","envs","functions","postcss","postcss-plugin","variables"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@5.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"29bad355f29c1e71e0f68214c895b317e0c6b665","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-5.0.1.tgz","fileCount":6,"integrity":"sha512-hfwf40QSq/+gQMhstHeSvSEKdcQJSxzEy6V8RWLDgFPiyTnVGsSSt3B1nLHprLg/wW61Qfh2uQzNXJjspv3c3Q==","signatures":[{"sig":"MEYCIQCHb/vsrbVwTj+xpJ5HGJuaw6E+lTdG1Hslp/JDskuItgIhAIo90k0pwo41FT7N3srlvPcPMZtX6WTxX3+pWbR9tFZd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NC/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQng/+LBaWMRkD6v4QHcSEdy8I75jmVxZkxbD7rSlgGBeU4uf8MFAC\r\nQjilbgQgCvU/T45EgvaZoKjoUu0/GTyrLaCvz/TGskagJ/1ydCTVGQv9TmBr\r\ndfwpyzORs9cfmhheiegtsM6aPX4Or2+Ct9Fna5d6yyScXKDgOYevnXEJxfpN\r\nM3PZTFr3/wRgjoOzjJdSYx3/CKROZ3pMhSsFuoBIHPqEhA4RDsgEx2FlriUb\r\nmPo0FWBYROAG3P+qXc6YqjE/VxMaGasUkIOVdTdtr3V9mBVRBLGwB6cjTXAo\r\nuysPYeLN3XM3LKxgxIpMHMuPGLSLeuEcCBE1yuiZ6ALeFvrqjqU1EiIaUGOf\r\nzE69W+wUec8xKVbeLf3/JXj429e3Uxl/jX9BM1QYOYmxn3isv7MpcUPnBe0w\r\nGI4kkQXBIGNTEOAP/sRD6o1fwTOAJZKvOR1EcLlHesRZwXurS63EXSjGU0eR\r\npfX3OTXwa6jWFFDQF91Er5lf13kQ9QcYjUjnTdtYeSXBThhnsIkYR7kG8vAR\r\ny2tO6mc4IpYTvyvcw0YrNZxN+lXZiEpEoCIN4po5KEOP0n9QcAe5hagUv79P\r\nYSr46FgyKTN/gk487pGA67srs2500uQJMb0/hnjgMQH8XtVkZvuKTmChEA8A\r\ngaa5Pr3xYuWx6LDh+3CmHu59q5VKLFjcp/s=\r\n=OTWz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","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":"5bdd286be6fff886fb2f00a478f92750022eb49c","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.cjs && 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.cjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssEnvFunction","humanReadableName":"PostCSS Environment Variables"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-env-function"},"_npmVersion":"8.18.0","description":"Use env() variables in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_5.0.1_1674891455259_0.23373256901996253","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-env-function","version":"1.0.0","keywords":["postcss","css","postcss-plugin","environments","variables","envs","constants","functions"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-env-function@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-env-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-env-function/issues"},"dist":{"shasum":"0d81b53b3d789d55d1cac8125ec64f89e916a2f7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-env-function/-/postcss-env-function-1.0.0.tgz","fileCount":6,"integrity":"sha512-UVkdbVCRAEr79XkS6uxMRWIHYrFNuhXmjw6gxyesCBXzzHIvYOoz5UKTWM39xX3j9vGO5waVzxq/VzEiZgsM0g==","signatures":[{"sig":"MEUCIQDIb2oSPBi8ocO6uDZB9hZo+neSdqcM+Pi8WzeMe9/g2QIgMt+8LxsN4y74U1G61nBCpW/CUGodaP3AT0FH6ap6n7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5MXWCRA9TVsSAnZWagAAgNUQAJhH8+Odgshb1wGkCU48\nXI/ycsZi5nE/R4bI2/EvFBjXPDK10AsE+fHVBq5WBBt5omYiD7OKd0VFiA1F\nFjBvvQkDQ0J2DehCtCtiJl5koZD2wmV90oVrsjb9Y4qXVEyaaueZ8lYPrv4y\ng/R5fSE5yNGv7HSOZ7wLllx88QpeODSTxmJUuNiEoBT6KgLFDMnhVTlpLUq2\nMFbI61SqejM3JmDCG/7rIte5vySXJVSg0zThwAEnqimtsj9MrN4G8ojX2nHn\nkjaY2m9DMQGHPSHmaBQX80i/8cAlQ5SVx1Fwzdgo9wlPsUMgUY96UC8cY4Uw\nApqFJxRbUUUhQUoYIfWUiAvwXOrYl8aa7e601eO7gzFpe893fMvzOI2Z/sYW\nfVdaSS3eJNVkZiOhk1YDPuexSA4kCnFTp10SbxN/zAvFBIveKS/+3QkAvlC4\n4N7p6/VD+bpcubqo98NfbAWhd25EFHBhKd0ruNfX6XD4XfjiS3gO16Je26l0\nzemFOm62hKLz+EAHD8Fb0xn/aV02a/dTMtxbgsOo/aHsWxgOYu12R7noAs4T\nLOz6RyjrufpmyP+IHjOoGsGDfTeP8G2ceNbHbPdJTyzKRA5nUvFamLNRhGHP\n0rTsWukAjN4cMztHmwdGUTRn6MMk5HylcyQGHAj8EJMcJ5XUBSsuONpNWEBt\nspuQ\r\n=MRKm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"c7f2f6c3fa4dc1feac82e5c4bc75aec33ee88e9d","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-env-function.git","type":"git"},"_npmVersion":"6.0.0","description":"[![NPM Version][npm-img]][npm-url] [![Build Status][cli-img]][cli-url] [![Windows Build Status][win-img]][win-url] [![Support Chat][git-img]][git-url]","directories":{},"_nodeVersion":"10.0.0","dependencies":{"postcss":"^6.0.22","postcss-values-parser":"^1.5.0"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.19.1","rollup":"^0.58.2","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.3","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-env-function_1.0.0_1524942292598_0.6858563390005432","host":"s3://npm-registry-packages"}}},"name":"postcss-env-function","time":{"2.0.0":"2018-09-18T03:35:44.626Z","2.0.1":"2018-09-18T16:05:36.384Z","created":"2018-04-28T19:04:52.598Z","7.0.0":"2024-08-03T21:36:33.739Z","4.0.2":"2021-11-18T17:18:59.550Z","4.0.3":"2021-12-13T09:31:38.378Z","4.0.0":"2021-09-17T13:38:51.804Z","4.0.1":"2021-10-29T12:03:37.811Z","4.0.6":"2022-03-19T18:11:53.408Z","2.0.2":"2018-09-20T20:16:54.767Z","4.0.4":"2022-01-02T15:39:51.880Z","4.0.5":"2022-02-05T17:05:13.464Z","3.0.0":"2020-04-26T12:43:53.999Z","6.0.0":"2023-07-03T08:12:17.030Z","8.0.0":"2026-01-14T07:22:14.001Z","modified":"2026-02-16T13:28:40.569Z","5.0.0":"2023-01-24T09:02:56.575Z","5.0.1":"2023-01-28T07:37:35.484Z","1.0.0":"2018-04-28T19:04:52.647Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme"}