{"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use the overflow shorthand in CSS","readme":"# PostCSS Overflow Shorthand [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[![NPM Version][npm-img]][npm-url]\n[![CSS Standard Status][css-img]][css-url]\n[![Build Status][cli-img]][cli-url]\n[![Support Chat][git-img]][git-url]\n\n[PostCSS Overflow Shorthand] lets you use the `overflow` shorthand in CSS,\nfollowing the [CSS Overflow] specification.\n\n```pcss\nhtml {\n  overflow: hidden auto;\n}\n\n/* becomes */\n\nhtml {\n  overflow-x: hidden;\n  overflow-y: auto;\n  overflow: hidden auto;\n}\n```\n\n## Usage\n\nAdd [PostCSS Overflow Shorthand] to your project:\n\n```bash\nnpm install postcss-overflow-shorthand --save-dev\n```\n\nUse [PostCSS Overflow Shorthand] to process your CSS:\n\n```js\nconst postcssOverflowShorthand = require('postcss-overflow-shorthand');\n\npostcssOverflowShorthand.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssOverflowShorthand = require('postcss-overflow-shorthand');\n\npostcss([\n  postcssOverflowShorthand(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[PostCSS Overflow Shorthand] runs in all Node environments, with special\ninstructions for:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n## Options\n\n### preserve\n\nThe `preserve` option determines whether the original `overflow` declaration is\npreserved. By default, it is preserved.\n\n```js\npostcssOverflowShorthand({ preserve: false })\n```\n\n```pcss\nhtml {\n  overflow: hidden auto;\n}\n\n/* becomes */\n\nhtml {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n```\n\n[cli-img]: https://img.shields.io/travis/jonathantneal/postcss-overflow-shorthand.svg\n[cli-url]: https://travis-ci.org/jonathantneal/postcss-overflow-shorthand\n[css-img]: https://cssdb.org/badge/overflow-property.svg\n[css-url]: https://cssdb.org/#overflow-property\n[git-img]: https://img.shields.io/badge/support-chat-blue.svg\n[git-url]: https://gitter.im/postcss/postcss\n[npm-img]: https://img.shields.io/npm/v/postcss-overflow-shorthand.svg\n[npm-url]: https://www.npmjs.com/package/postcss-overflow-shorthand\n\n[CSS Overflow]: https://drafts.csswg.org/css-overflow/#propdef-overflow\n[Gulp PostCSS]: https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Loader]: https://github.com/postcss/postcss-loader\n[PostCSS Overflow Shorthand]: https://github.com/jonathantneal/postcss-overflow-shorthand\n","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-overflow-shorthand.git","directory":"plugins/postcss-overflow-shorthand"},"users":{},"bugs":{"url":"https://github.com/jonathantneal/postcss-overflow-shorthand/issues"},"license":"CC0-1.0","versions":{"1.0.0":{"name":"postcss-overflow-shorthand","version":"1.0.0","description":"Use the overflow shorthand in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-overflow-shorthand.git"},"homepage":"https://github.com/jonathantneal/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-overflow-shorthand/issues"},"main":"index.cjs.js","module":"index.es.js","files":["index.cjs.js","index.es.js"],"scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=4.0.0"},"dependencies":{"postcss":"^6.0.22"},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-preset-env":"^1.6.1","eslint":"^4.19.1","eslint-config-dev":"^2.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.58.2","rollup-plugin-babel":"^3.0.4"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"gitHead":"e391f4a9c94bb2cead4b18486894ff965489bc42","_id":"postcss-overflow-shorthand@1.0.0","_npmVersion":"6.0.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"3b19eec626abf00b2e3845a2f8d74b534f420765","size":5068,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-1.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-overflow-shorthand_1.0.0_1525144624610_0.18953857985196865"},"_hasShrinkwrap":false,"publish_time":1525144624697,"_cnpm_publish_time":1525144624697},"1.0.1":{"name":"postcss-overflow-shorthand","version":"1.0.1","description":"Use the overflow shorthand in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-overflow-shorthand.git"},"homepage":"https://github.com/jonathantneal/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-overflow-shorthand/issues"},"main":"index.cjs.js","module":"index.es.js","files":["index.cjs.js","index.es.js"],"scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=4.0.0"},"dependencies":{"postcss":"^6.0.22"},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.3","babel-preset-env":"^1.6.1","eslint":"^4.19.1","eslint-config-dev":"^2.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.58.2","rollup-plugin-babel":"^3.0.4"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"gitHead":"5815b683017fbaa0b60502274a2089a79cd1d07b","_id":"postcss-overflow-shorthand@1.0.1","_npmVersion":"6.0.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"f72cc216f770f1ab712863dcce9bc32f774b2b74","size":5238,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-1.0.1.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-overflow-shorthand_1.0.1_1525756666289_0.4625178386072244"},"_hasShrinkwrap":false,"publish_time":1525756666370,"_cnpm_publish_time":1525756666370},"2.0.0":{"name":"postcss-overflow-shorthand","version":"2.0.0","description":"Use the overflow shorthand in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-overflow-shorthand.git"},"homepage":"https://github.com/jonathantneal/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-overflow-shorthand/issues"},"main":"index.cjs.js","module":"index.es.mjs","scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:ec":"echint --ignore index.*.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.2"},"devDependencies":{"@babel/core":"^7.0.0","@babel/preset-env":"^7.0.0","babel-eslint":"^9.0.0","eslint":"^5.6.0","eslint-config-dev":"^2.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.66.0","rollup-plugin-babel":"^4.0.1"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"gitHead":"dc9858d78eef25cda5022d34d5558137486751cd","_id":"postcss-overflow-shorthand@2.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30","size":5973,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-overflow-shorthand_2.0.0_1537244821946_0.2117249055846162"},"_hasShrinkwrap":false,"publish_time":1537244822088,"_cnpm_publish_time":1537244822088},"3.0.0":{"name":"postcss-overflow-shorthand","version":"3.0.0","keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-overflow-shorthand@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-overflow-shorthand/issues"},"dist":{"shasum":"f57631672333b302ffdcfc0735b8b7d0244c2a25","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.0.tgz","fileCount":7,"integrity":"sha512-4fTapLT68wUoIr4m3Z0sKn1NbXX0lJYvj4aDA2++KpNx8wMSVf55UuLPz0nSjXa7dV1p0xQHlJ0iFJRNrSY2mw==","signatures":[{"sig":"MEYCIQDb7MJmDSXHCMMzLnfhIm071xof0eDi3M5mmOmvJ5DNywIhAP6LWEi6KBsmcPKgcC8ZnCweXVd2zhTuEHO3in9dX4y/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18351},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=12"},"gitHead":"80fbc3755819ec7bca71a67a0b8a15bc8cb38517","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-overflow-shorthand.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.6.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020,"impliedStrict":true}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","@rollup/plugin-babel":"5.3.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_3.0.0_1631887437657_0.3241568291355321","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-overflow-shorthand","version":"3.0.1","keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-overflow-shorthand@3.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-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-overflow-shorthand":"dist/cli.mjs"},"dist":{"shasum":"d0d0a9e2bbf3428a31e0a9d81e4a0dc1164ce356","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.1.tgz","fileCount":10,"integrity":"sha512-/ajDNoTF+LiuhIZjenjb/ndBoKP/WYy/dTT8BCCtLU1wrezkax+lXw5r3c5qR4cadNNMbksAnhWJXNjd9xNTHA==","signatures":[{"sig":"MEQCIFyOM9AlOiotdNgOX3hTZe8ZkeQ335bMyRU4WsoeoVVDAiBmTFPgrWIvNRutrsmUo8YfB6xjITtIPCWDgmz698OVzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":104119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxazCRA9TVsSAnZWagAAjp4P/2eDsTNOYMtaxfIo6uL/\nxE7u4lqeLdPFPIHBY7/VyysrdW20+5O4RU9gmTkdqSh01dvUC0lPlFQ3crR5\nbiAPhfnAyhpusVEDKrwFDU+R3GG5z0cKRyTZuXlGRWdi3Rk+n7l9hIDreQv9\n9n2pj3mqfShvIFsQj/Pv/3ffgjdqPvRDKCMt2u1qzgvlbB6s6X6m+2z0oy+E\nbemWedyW6T6/RovtcbbGRh82Wcscevy4QrKBeKpreXj+bEge5/BFcNn6ovro\n5NvyAa6ioe2jpFkjE50RBzyPCRBmaOKO7Od1UkzAg2rP9JT9PW3bzdZ/5FWx\nWTzZLuApEyB0Lep23fUqFh/Z8eJ+mfizySOAJfqld9I7o8rAzvN4tf+3R3JS\n2YVQEWIhIyMraRS5lRxBtbqns01KvdJnGzfqtQC/5ssbBwP3KD90oMWHj18L\nWznGeLlsqOyRKnYwG9ghjik0jpG1O8seOvJ+6IR2wOCd+qNTlLTKELtun+P4\nPCdcuVPpRWSZK8znBJazp7I4Et4YB4xL3vempdyTivW9XNClGY/8QTz+03eS\nlUlXYqvSh+cntfKqq82aaAbx2WU5QnfujQ80P5bQmuLDofPfe/d2mR27HVGL\nDavXTWsHLWbpqOiAF1v9IeQZ0n1aHxM2WXbTIYi7noUBOSEkH6yQePt+5GnW\n9KtG\r\n=I5Ld\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"19f66890e5999834c7289fb5278ee684ae8ffc51","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-overflow-shorthand"},"_npmVersion":"8.1.0","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_3.0.1_1639388851824_0.9841669302394755","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"postcss-overflow-shorthand","version":"3.0.2","keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-overflow-shorthand@3.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"b4e9c89728cd1e4918173dfb95936b75f78d4148","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.2.tgz","fileCount":6,"integrity":"sha512-odBMVt6PTX7jOE9UNvmnLrFzA9pXS44Jd5shFGGtSHY80QCuJF+14McSy0iavZggRZ9Oj//C9vOKQmexvyEJMg==","signatures":[{"sig":"MEQCIFPeei8yFsE36inlHHZ6CJlMyUO2WMlJzYTZKCXdqL91AiBPyeDRQE2ETuBfkubV8BqErFOrmOVfwWaqbfSAT7eTIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cSYCRA9TVsSAnZWagAAyScP/i3RowrE21f+fzXIN4n+\nT0NIHkuFcHnV/EjS9bos5+7nZbGqZJdhd1ETxy0hWgpCZ6fsa0ORaGLlrX4G\nD1J3IOv8mcY5TyFJCLUy1fX5MUCFbrj8QVwJvPjYLZ87ETiR6t80jiKFa4xj\n4CTOOxSorEU+9lZcXGv8yXU8e/b/Z7SVNQP+S0RWXuQ+qxcZ+R9O49Dl/9Od\nYq0damBByFNbIinWmaOa8rP1DK2qUU/5MRal/FeDeSf7uYwulG18y+in/X4K\nJxtHTQVtc2MY+hBddc22+9EUleH8MTUeuVsOyJBwRPdGPC6MxA9YIY8jEjvT\nQup226z2I5uyUQX13OtyAphOBEJaD3F6PdbpmTpWuC4Bcw4zKlG3V3nn0nIz\nbhuaQzmR72v2G3FvrfECbhAKWKixt1VU1YAPArbXlWs5txIKSIsFRCdIAnB6\nL80WnlX4WuDm/xkD91MwRhzN0/jiz3BIdqoAaNW3dlA0cOnN1HmW3QGHHqbM\nBCDSNOAHVHtO2IfsNUMgpEpiZmDLKsqMzuHS5tVlnrHOnrUz3VALa/C2YP8I\ngKGR7+7O9vkzpcSO3WS4OWxZJ1nk+r8FHfOfsxwIer0qsDkcR+ILunh5HoCR\n7DbMb9D1YPdlgMeVv2Lmhviuvuz1+iNWCBUGWmvZtvuLxFtVoVNUEZLl8VeL\nKaX1\r\n=m/6f\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":"7d98b7d66a0da0faf8f88caad1cde9b349656e6a","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-overflow-shorthand"},"_npmVersion":"8.1.2","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_3.0.2_1641137304821_0.21888428177804786","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"postcss-overflow-shorthand","version":"3.0.3","keywords":["postcss","css","postcss-plugin","overflow","properties","shorthands","values"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-overflow-shorthand@3.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ebcfc0483a15bbf1b27fdd9b3c10125372f4cbc2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.3.tgz","fileCount":6,"integrity":"sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==","signatures":[{"sig":"MEUCIQC7rA+iRC10oSQ7a8byc1tSYDBLY1s1cXGhyi7VD1bqxgIgPqRBWlwUQo89gqchMvjLBoqk3YRs4nMmIT+Lbjkf/6w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/rIaCRA9TVsSAnZWagAAfsoP/2BsMFaLbPEUirfX/5ua\n8TGsrJqnFfD9mdO19n8idLeFzslTUYdoQZrpN1O/lKTaJlEnbjeFU119U0TI\ndQWmQ4ENaaRqMs1pH1yil2vkjJLfmTK9e2t7vOVHRQmEef/FZufk1NnsIlTk\n4sSIoiwEvMdAu8iuDvVFKQJ6szgtQiBAOzqE3gEKtdeJwqphST1qpSeIxejb\npVqpc76S0LKkPDppM5/qSKxK/a0SmzuSeHDdi/HYvvC7RbY4zQ5AJBrDtFAQ\n9OHsRWdTkNJkhX6tmgBMVh4n+Soq4PsNaqIyeQsV4ySE2RjV+EJKbaIUarvI\nQM2QEGANnuTtgIVvevlPBmEvkhXatN8C0O4xfaGWiRl14HwvpP+KM0UdVUdt\nyvWS98ig0lPz88aa70j4bjn7kHQys0nQryqOzusYrKJJR6gz1xDR9gTXQedA\nydK2+VfLiSAbDxEjHAfrf3oAv1SruRtmc6g6Mcj0r/8m6cgz+ZU9xNGSR8Ht\nN/6XLNtwoyrAs2J6nrgBZIhjvPvlsRg82a2zfzmzxwS6RhZHnooE+B4s5x4w\nLovdxh9Ay7CQNQ1IaQZy6sncgXnlEMvZ0jWVjIWaOdBUqz9zCcnnHhVv6j3e\nXlnEbOr/WOxQAqpKs7wrtkdg2Y+Dvx2K2enP8qWwzDrpNZn6YA8KU1gNTlVE\nx0mw\r\n=MvC9\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":"e600651d1d4f87b96b5f5fda0c73f0ea94084e70","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-overflow-shorthand"},"_npmVersion":"8.1.2","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_3.0.3_1644081690555_0.6113465069929191","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"postcss-overflow-shorthand","version":"3.0.4","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-overflow-shorthand@3.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7ed6486fec44b76f0eab15aa4866cda5d55d893e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz","fileCount":6,"integrity":"sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==","signatures":[{"sig":"MEQCIH9ItgUeDRxOwtRe+iMj8JEsfCpMMa04FtB3EgIuZHC8AiBMxyakQoDcZa99NpuFMdaUqMagmNwTPV2IboDpYcGxog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyGPYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohWw/7BU0HnvJqmWsx5/2isUmbWMfwTAmEnF6+Y2+PEs63TwaodLy0\r\nDL0nZOxCRLtN3wKqXKpk2TRpICJuVmeH+WitPuN91ZkIXdlD5IkakDZ1Xn+9\r\n89i/UYdvoTQ/sbtTpgLa+qDa8FUgRPuea1LfDNcSOvXpv65ubDjm+SzroinX\r\ngMOl7URcKSGsQkz/qVIJuXmo9JamrmaRbYEcjsPvYJlGqC/AMJMYlEujRnuX\r\nd8eGTdhmFron62uvUzVZ/S2npdDiUtc3RnsL5dJzsKp3CAvS17VYU3268XHV\r\nYHqla6YwmAjsZP0gTHX4Yqq92s8xtLW1V7BR5Bv31t4ZFnWEBSNO8r44lh/B\r\npg4YQMbGH44LngEK+4dDpfuBrswimni4hN3kCNYugAgNaPHl1NIlHALWTCj7\r\nQ3ocac25Xj0g0Oj3srEcQGr68ZoseJ4UnqhOrxyc64Wcz0m2Q2w8YcsFprVw\r\n9mjy9PCRITESteAGFF1LtJ67G+1vMJMOzY4PUb1dksnVNxD4IE64hzy0fZ7l\r\nXNzfkeSpGmkop+4+gYMM6NTZJ9Fltwy8DRJEfC7Wd0pZDDf1tFTZOwIuB4Kg\r\n4i08Sf88HEh3Xcll12NaL9jfk15ToEWNvl8AUxlZEIQKfKzinhtnkdNUP+Xn\r\naKTg/P2hrsEcyCJpIsITdRHSG45qDyw16Xo=\r\n=0rZo\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"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"369078a1e7e49f0a3c3468b2ce35c57790bdb31d","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"exportName":"postcssOverflowShorthand","humanReadableName":"PostCSS Overflow Shorthand"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"8.1.2","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_3.0.4_1657299928487_0.824582655345975","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-overflow-shorthand","version":"4.0.0","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"license":"CC0-1.0","_id":"postcss-overflow-shorthand@4.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"247a57c29e982f7fe6f34f2172371daeb6f2bfb2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-4.0.0.tgz","fileCount":7,"integrity":"sha512-HJ+HIX6IeVyDBu+b5cJScwGYPnGokswXWH1izVgJGT6D5mrHzQJUvWWvHBRlopCAEbtose+JNOjRQgTRGHjm3A==","signatures":[{"sig":"MEQCIFsAme4g6PAdXImmM75gA8/YMbMxlVibyzYuWM2kompVAiB35FN6MJGH1CuzyJHZ9ikNsBrQJSk6KkGD33z+5PWy+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz6F+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpaWA//QMX6jxsolPaQnkSvIENl0qVwt2W2280tqmXVdk3VQaEa5gpv\r\nmp/BMysvZUwYaQZ2mfL3snrDiSsZxPbZfKyaX5irNqIxXpDlB8RZXe/rFdud\r\nZid9HsW7c59yMjqD6YEnOhncj4pQoIH96C8xmd8ySQL9JVfffhixEpHCo2ni\r\n1imLDnvNH2pj75Jz7axNgnmRoUccJmQTeN2ah9qznJzvav+DxOA3nKuvgy4Q\r\nz5SRJWRoFvdzBhz0Uzno25pUrNkAhQYJPv5ZCXyCC258Tzh4WOW2xPRzHYk4\r\nOgnLZzF+8LJHFzUIV3oi51Kp0EhC9lEk5dhkRDaP3ZJOK7a3yjTJAf6rNfbX\r\nEDac0NcT0FGqCX7FGQgPpWfM2ZtTfwJa9PwXU9Fh4kLj+ksl+OyCB5ZRhxdG\r\nJ+lsq/RMvJNyO1rYBiWWc1F8iCZkLNTwoU+f5od4mIul96EbCapwCKKfs3E0\r\ntTKInnQXGbvu3vXDXcwrFBoWq+co6WNWhzdvnBpthDGEsoNMXOqNYb1ySwln\r\nd6nwXhHwMhkJgfBxoldYnWVpESGSKL9PU+2jdCZ747xv5Z0w9Orc3/Pe/BLc\r\nPjo32J5RvkrvIp8tZVsKrONMoeAtpI6O5olbFpbXRHeqO+9sCz6pHpavYtci\r\nOBYyjL1Fei1QT/W/CCuygxWPIUwM4fo+Ux4=\r\n=D4I9\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":"58574d960cb82df8d0abb17129fa7b48bb7f108f","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":"overflow-property","specUrl":"https://drafts.csswg.org/css-overflow/#propdef-overflow","exportName":"postcssOverflowShorthand","humanReadableName":"PostCSS Overflow Shorthand"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"8.1.2","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_4.0.0_1674551678525_0.984050723780816","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-overflow-shorthand","version":"4.0.1","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"license":"CC0-1.0","_id":"postcss-overflow-shorthand@4.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"cb61ca24d8c4e1dbf14d85181b017cfa6953aa34","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-4.0.1.tgz","fileCount":7,"integrity":"sha512-HQZ0qi/9iSYHW4w3ogNqVNr2J49DHJAl7r8O2p0Meip38jsdnRPgiDW7r/LlLrrMBMe3KHkvNtAV2UmRVxzLIg==","signatures":[{"sig":"MEQCIERJIUTNooCW1ESBAHZUvc3unkWCQriX4MtM3iv5H9ICAiAh5Xgamru+MoYXLUi7rQQ4tkLqmj/PYiBs1K8lMODogw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NVkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmptQg//X8tZy+YeaMjzNSaLLR6jpVh2cFUlVFRTDVfCm4psDG6J9Rim\r\nqVH8OAnIPF14TApJpKlDPCUvmwVitPjsDpbYrDp9lIyGkJlok/+tnDweRdGM\r\nDR6K7H+LZHY0BB0WglJbuvIDUEV/ryxnajnoHD/BcOrOsAJ7GvurZcGToCLS\r\nF6FOk/Hrc2iqGGNpYZXhFvtsX9rdT8WvxrwpJZgxs/SzkqIG3XXhz3u1Tl5w\r\nedfuJWPgFTvSqjf0Jpz73eQgAhGzlftiH77qG0LBHAsDlCq/xmLtzRDeEYY+\r\nwVZ/HIk7tvpDqkt0rgQ82mxaFbRZ8W4tZoF+GzperDjNZ6I/odbN+TCiWB/J\r\n+yYq8tS0mARVfrWl4Vv2ewGA6vFxCoEXVWqRv6wy2hTY96d2qJEg5px/1ftZ\r\nBZV7pgj5obW+qcfH9qyquXURvfkDIZ3E34/hperSMwRGYl5h4vD65gVgk3r3\r\ny0oqlVwNqBMvLD96z1t+FShbyrYa4ENKMVYNOtORLs9hvVL3m+l7EVhaSadL\r\n/Zh6lLVAAHZXNftQvdwOv/m2I4H3/RnHaOXZFzFgWPrviHpwDt/xXsNSaVce\r\njQt8IB8vFd13T4PLmU00PyAnJ536P0K+dVjDcGtsdJ96IKih/2koPG1hTmcc\r\nJ8GS1Pg3bqkRQbl/wP/pFBOk1JYO+d8J7OY=\r\n=oeaV\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":"1ba85886f73a78d61f95a80d230a36543d73fee2","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":"overflow-property","specUrl":"https://drafts.csswg.org/css-overflow/#propdef-overflow","exportName":"postcssOverflowShorthand","humanReadableName":"PostCSS Overflow Shorthand"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"8.18.0","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_4.0.1_1674892644210_0.9563769653454282","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-overflow-shorthand","version":"5.0.0","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"license":"MIT-0","_id":"postcss-overflow-shorthand@5.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"1ed6d6c532cdf52b5dabec06662dc63f9207855c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.0.tgz","fileCount":7,"integrity":"sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ==","signatures":[{"sig":"MEQCIAFvbYce7LMAQ8jA/U8gOypLzuHvCZw+ao8pJNAOzwDYAiBIGayorL3I0AzqnAnd+sOOfUC53MjUbmjWe8LHAQzQdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8498},"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":"86d18d97c07c52f2e93eb0405d2eb109eb623701","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":"overflow-property","specUrl":"https://drafts.csswg.org/css-overflow/#propdef-overflow","exportName":"postcssOverflowShorthand","humanReadableName":"PostCSS Overflow Shorthand"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"9.5.0","description":"Use the overflow shorthand 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-overflow-shorthand_5.0.0_1688372180781_0.6107634864959768","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-overflow-shorthand","version":"5.0.1","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"license":"MIT-0","_id":"postcss-overflow-shorthand@5.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"c0a124edad4f7ad88109275a60510e1fb07ab833","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz","fileCount":7,"integrity":"sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==","signatures":[{"sig":"MEUCIHcw5IIOsqmJ5WFVYeWyUoQg5MwKsWEzlRgInCPHt1/ZAiEAtY/0aGv+5enTvjCA6grVWQd2skC/zVIT/pNZsN+go5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7152},"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":"4fb431ed40eddfe7dd41d882764ae80d90b59ee4","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"10.2.3","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_5.0.1_1702682440024_0.6116592479853085","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-overflow-shorthand","version":"6.0.0","keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"license":"MIT-0","_id":"postcss-overflow-shorthand@6.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"f5252b4a2ee16c68cd8a9029edb5370c4a9808af","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz","fileCount":7,"integrity":"sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==","signatures":[{"sig":"MEYCIQCvxkEb2AFSrWYcZVfWrWQ8Hf0mjINfHW/y8HfIPyd5HQIhAP+8SaJjYFt02oAbqN7XFlcHko/earPnM/dEf+IORKpk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6128},"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":"99f81be0c19143a9f0f575b02e81a5203c7b81d1","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-overflow-shorthand"},"_npmVersion":"10.7.0","description":"Use the overflow shorthand in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-value-parser":"^4.2.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-overflow-shorthand_6.0.0_1722721100848_0.5173251956449509","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-overflow-shorthand","description":"Use the overflow shorthand in CSS","version":"7.0.0","contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"license":"MIT-0","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"}},"dependencies":{"postcss-value-parser":"^4.2.0"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-overflow-shorthand"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["css","overflow","postcss","postcss-plugin","properties","shorthands","values"],"gitHead":"0401289903325245f9dd9c2bd0cbcf9844a64c52","_id":"postcss-overflow-shorthand@7.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-9SLpjoUdGRoRrzoOdX66HbUs0+uDwfIAiXsRa7piKGOqPd6F4ZlON9oaDSP5r1Qpgmzw5L9Ht0undIK6igJPMA==","shasum":"f7f804104d3265cc1f03d34e1980801f162267b7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-overflow-shorthand/-/postcss-overflow-shorthand-7.0.0.tgz","fileCount":6,"unpackedSize":5445,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDUy7DGeR4ieIvy4RKRw95Ju7nrqvmv/Ycib1I2/0OgYQIgFzIDocc//CFS48BakEeaEMSvJJb7joedUF7s4duuYMg="}]},"_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-overflow-shorthand_7.0.0_1768375455778_0.9295433188373592"},"_hasShrinkwrap":false}},"name":"postcss-overflow-shorthand","time":{"created":"2018-05-01T03:17:04.697Z","modified":"2020-11-11T14:46:49.806Z","1.0.0":"2018-05-01T03:17:04.697Z","1.0.1":"2018-05-08T05:17:46.370Z","2.0.0":"2018-09-18T04:27:02.088Z","3.0.0":"2021-09-17T14:03:57.787Z","3.0.1":"2021-12-13T09:47:31.994Z","3.0.2":"2022-01-02T15:28:24.990Z","3.0.3":"2022-02-05T17:21:30.731Z","3.0.4":"2022-07-08T17:05:28.723Z","4.0.0":"2023-01-24T09:14:38.659Z","4.0.1":"2023-01-28T07:57:24.415Z","5.0.0":"2023-07-03T08:16:20.987Z","5.0.1":"2023-12-15T23:20:40.208Z","6.0.0":"2024-08-03T21:38:21.018Z","7.0.0":"2026-01-14T07:24:15.906Z"},"contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},{"name":"Romain Menke","email":"romainmenke@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/jonathantneal/postcss-overflow-shorthand#readme"}