package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "postcss-minify-selectors",
  3. "version": "5.1.1",
  4. "description": "Minify selectors with PostCSS.",
  5. "main": "dist/index.js",
  6. "files": [
  7. "dist",
  8. "LICENSE-MIT"
  9. ],
  10. "keywords": [
  11. "css",
  12. "minify",
  13. "optimise",
  14. "postcss",
  15. "postcss-plugin",
  16. "selectors"
  17. ],
  18. "license": "MIT",
  19. "homepage": "https://github.com/cssnano/cssnano",
  20. "author": {
  21. "name": "Ben Briggs",
  22. "email": "beneb.info@gmail.com",
  23. "url": "http://beneb.info"
  24. },
  25. "repository": "cssnano/cssnano",
  26. "dependencies": {
  27. "alphanum-sort": "^1.0.2",
  28. "postcss-selector-parser": "^6.0.5"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/cssnano/cssnano/issues"
  32. },
  33. "engines": {
  34. "node": "^10 || ^12 || >=14.0"
  35. },
  36. "devDependencies": {
  37. "postcss": "^8.2.15"
  38. },
  39. "peerDependencies": {
  40. "postcss": "^8.2.15"
  41. },
  42. "scripts": {
  43. "prebuild": "rimraf dist",
  44. "build": "babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\""
  45. },
  46. "readme": "# [postcss][postcss]-minify-selectors\n\n> Minify selectors with PostCSS.\n\n## Install\n\nWith [npm](https://www.npmjs.com/package/postcss-minify-selectors) do:\n\n```\nnpm install postcss-minify-selectors --save\n```\n\n## Example\n\n### Input\n\n```css\nh1 + p, h2, h3, h2{color:blue}\n```\n\n### Output\n\n```css\nh1+p,h2,h3{color:blue}\n```\n\nFor more examples see the [tests](test.js).\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n"
  47. }