You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.7 KiB
42 lines
1.7 KiB
{ |
|
"name": "postcss-minify-params", |
|
"version": "5.1.0", |
|
"description": "Minify at-rule params with PostCSS", |
|
"keywords": [ |
|
"postcss", |
|
"css", |
|
"postcss-plugin", |
|
"minify", |
|
"optimise", |
|
"params" |
|
], |
|
"main": "src/index.js", |
|
"types": "types/index.d.ts", |
|
"files": [ |
|
"src", |
|
"LICENSE", |
|
"types" |
|
], |
|
"author": "Bogdan Chadkin <trysound@yandex.ru>", |
|
"license": "MIT", |
|
"repository": "cssnano/cssnano", |
|
"bugs": { |
|
"url": "https://github.com/cssnano/cssnano/issues" |
|
}, |
|
"homepage": "https://github.com/cssnano/cssnano", |
|
"dependencies": { |
|
"browserslist": "^4.16.6", |
|
"cssnano-utils": "^3.1.0", |
|
"postcss-value-parser": "^4.2.0" |
|
}, |
|
"engines": { |
|
"node": "^10 || ^12 || >=14.0" |
|
}, |
|
"devDependencies": { |
|
"postcss": "^8.2.15" |
|
}, |
|
"peerDependencies": { |
|
"postcss": "^8.2.15" |
|
}, |
|
"readme": "# postcss-minify-params [![Build Status][ci-img]][ci]\n\n> Minify at-rule params with PostCSS.\n\n```css\n@media only screen and ( min-width: 400px, min-height: 500px ) {\n h2{\n color:blue\n }\n}\n```\n\n```css\n@media only screen and (min-width:400px,min-height:500px) {\n h2{\n color:blue\n }\n}\n```\n\n## Usage\n\n```js\npostcss([ require('postcss-minify-params') ])\n```\n\nSee [PostCSS] docs for examples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)\n\n[PostCSS]: https://github.com/postcss/postcss\n[ci-img]: https://travis-ci.org/cssnano/postcss-minify-params.svg\n[ci]: https://travis-ci.org/cssnano/postcss-minify-params\n" |
|
} |