仲裁视频会议H5

package.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "postcss-discard-duplicates",
  3. "version": "5.1.0",
  4. "description": "Discard duplicate rules in your CSS files with PostCSS.",
  5. "main": "src/index.js",
  6. "types": "types/index.d.ts",
  7. "files": [
  8. "src",
  9. "LICENSE-MIT",
  10. "types"
  11. ],
  12. "keywords": [
  13. "css",
  14. "dedupe",
  15. "optimise",
  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-duplicates\n\n> Discard duplicate rules in your CSS files with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-discard-duplicates) do:\n\n```\nnpm install postcss-discard-duplicates --save\n```\n\n## Example\n\nThis module will remove all duplicate rules from your stylesheets. It works on\nat rules, normal rules and declarations. Note that this module does not have any\nresponsibility for normalising declarations, selectors or whitespace, so that it\nconsiders these two rules to be different:\n\n```css\nh1, h2 {\n color: blue;\n}\n\nh2, h1 {\n color: blue;\n}\n```\n\nIt has to assume that your rules have already been transformed by another\nprocessor, otherwise it would be responsible for too many things.\n\n### Input\n\n```css\nh1 {\n margin: 0 auto;\n margin: 0 auto\n}\n\nh1 {\n margin: 0 auto\n}\n```\n\n### Output\n\n```css\nh1 {\n margin: 0 auto\n}\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. }