package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "cssnano",
  3. "version": "5.0.15",
  4. "description": "A modular minifier, built on top of the PostCSS ecosystem.",
  5. "main": "dist/index.js",
  6. "funding": {
  7. "type": "opencollective",
  8. "url": "https://opencollective.com/cssnano"
  9. },
  10. "keywords": [
  11. "css",
  12. "compress",
  13. "minify",
  14. "optimise",
  15. "optimisation",
  16. "postcss",
  17. "postcss-plugin"
  18. ],
  19. "license": "MIT",
  20. "dependencies": {
  21. "cssnano-preset-default": "^5.1.10",
  22. "lilconfig": "^2.0.3",
  23. "yaml": "^1.10.2"
  24. },
  25. "homepage": "https://github.com/cssnano/cssnano",
  26. "author": {
  27. "name": "Ben Briggs",
  28. "email": "beneb.info@gmail.com",
  29. "url": "http://beneb.info"
  30. },
  31. "repository": "cssnano/cssnano",
  32. "files": [
  33. "dist",
  34. "LICENSE-MIT",
  35. "quickstart.js"
  36. ],
  37. "tonicExampleFilename": "quickstart.js",
  38. "bugs": {
  39. "url": "https://github.com/cssnano/cssnano/issues"
  40. },
  41. "engines": {
  42. "node": "^10 || ^12 || >=14.0"
  43. },
  44. "devDependencies": {
  45. "autoprefixer": "^10.3.7",
  46. "cssnano-preset-advanced": "^5.1.10",
  47. "cssnano-preset-lite": "^2.0.2",
  48. "postcss": "^8.2.15"
  49. },
  50. "peerDependencies": {
  51. "postcss": "^8.2.15"
  52. },
  53. "scripts": {
  54. "bundle-size": "webpack --json --config src/__tests__/_webpack.config.js | webpack-bundle-size-analyzer",
  55. "prebuild": "rimraf dist",
  56. "build": "babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\""
  57. },
  58. "readme": "# cssnano\n\nFor documentation, please see the following links:\n\n* Repository: https://github.com/cssnano/cssnano\n* Website: http://cssnano.co\n"
  59. }