package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "clean-css",
  3. "version": "5.3.3",
  4. "author": "Jakub Pawlowicz <[email protected]>",
  5. "description": "A well-tested CSS minifier",
  6. "license": "MIT",
  7. "keywords": [
  8. "css",
  9. "minifier"
  10. ],
  11. "homepage": "https://github.com/clean-css/clean-css",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/clean-css/clean-css.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/clean-css/clean-css/issues"
  18. },
  19. "main": "index.js",
  20. "files": [
  21. "lib",
  22. "History.md",
  23. "index.js",
  24. "LICENSE"
  25. ],
  26. "scripts": {
  27. "browserify": "browserify --standalone CleanCSS index.js | uglifyjs --compress --mangle -o cleancss-browser.js",
  28. "bench": "node ./test/bench.js",
  29. "lint": "eslint ./lib/ --ext .js",
  30. "test": "vows"
  31. },
  32. "dependencies": {
  33. "source-map": "~0.6.0"
  34. },
  35. "devDependencies": {
  36. "browserify": "^17.0.0",
  37. "eslint": "^8.8.0",
  38. "eslint-config-airbnb-base": "^15.0.0",
  39. "http-proxy": "1.x",
  40. "nock": "^13.0.0",
  41. "server-destroy": "1.x",
  42. "uglify-js": ">=2.6.1",
  43. "vows": "0.8.x"
  44. },
  45. "engines": {
  46. "node": ">= 10.0"
  47. }
  48. }