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.
49 lines
1.8 KiB
49 lines
1.8 KiB
3 years ago
|
{
|
||
|
"name": "postcss-colormin",
|
||
|
"version": "5.3.0",
|
||
|
"description": "Minify colors in your CSS files with PostCSS.",
|
||
|
"main": "src/index.js",
|
||
|
"types": "types/index.d.ts",
|
||
|
"files": [
|
||
|
"src",
|
||
|
"LICENSE-MIT",
|
||
|
"types"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"color",
|
||
|
"colors",
|
||
|
"compression",
|
||
|
"css",
|
||
|
"minify",
|
||
|
"postcss",
|
||
|
"postcss-plugin"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"homepage": "https://github.com/cssnano/cssnano",
|
||
|
"author": {
|
||
|
"name": "Ben Briggs",
|
||
|
"email": "beneb.info@gmail.com",
|
||
|
"url": "http://beneb.info"
|
||
|
},
|
||
|
"repository": "cssnano/cssnano",
|
||
|
"dependencies": {
|
||
|
"browserslist": "^4.16.6",
|
||
|
"caniuse-api": "^3.0.0",
|
||
|
"colord": "^2.9.1",
|
||
|
"postcss-value-parser": "^4.2.0"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/cssnano/cssnano/issues"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": "^10 || ^12 || >=14.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/caniuse-api": "^3.0.2",
|
||
|
"postcss": "^8.2.15"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"postcss": "^8.2.15"
|
||
|
},
|
||
|
"readme": "# [postcss][postcss]-colormin\n\n> Minify colors in your CSS files with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-colormin) do:\n\n```\nnpm install postcss-colormin --save\n```\n\n\n## Example\n\n```js\nvar postcss = require('postcss')\nvar colormin = require('postcss-colormin');\n\nvar css = 'h1 {color: rgba(255, 0, 0, 1)}';\nconsole.log(postcss(colormin()).process(css).css);\n\n// => 'h1 {color:red}'\n```\n\nFor more examples see the [tests](src/__tests__/index.js).\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"
|
||
|
}
|