UNPKG

1.58 kBJSONView Raw
1{
2 "name": "postcss-discard-empty",
3 "version": "5.0.3",
4 "description": "Discard empty rules and values with PostCSS.",
5 "main": "src/index.js",
6 "files": [
7 "src",
8 "LICENSE-MIT"
9 ],
10 "keywords": [
11 "compress",
12 "css",
13 "empty",
14 "minify",
15 "optimisation",
16 "postcss",
17 "postcss-plugin"
18 ],
19 "license": "MIT",
20 "homepage": "https://github.com/cssnano/cssnano",
21 "author": {
22 "name": "Ben Briggs",
23 "email": "beneb.info@gmail.com",
24 "url": "http://beneb.info"
25 },
26 "repository": "cssnano/cssnano",
27 "bugs": {
28 "url": "https://github.com/cssnano/cssnano/issues"
29 },
30 "engines": {
31 "node": "^10 || ^12 || >=14.0"
32 },
33 "devDependencies": {
34 "postcss": "^8.2.15"
35 },
36 "peerDependencies": {
37 "postcss": "^8.2.15"
38 },
39 "readme": "# [postcss][postcss]-discard-empty\n\n> Discard empty rules and values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-discard-empty) do:\n\n```\nnpm install postcss-discard-empty --save\n```\n\n## Example\n\nFor more examples see the [tests](src/__tests__/index.js).\n\n### Input\n\n```css\n@font-face;\nh1 {}\n{color:blue}\nh2 {color:}\nh3 {color:red}\n```\n\n### Output\n\n```css\nh3 {color:red}\n```\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n\n[postcss]: https://github.com/postcss/postcss\n"
40}
\No newline at end of file