4
1

package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "clean-css-cli",
  3. "version": "5.6.3",
  4. "description": "A command-line interface to clean-css CSS optimization library",
  5. "scripts": {
  6. "check": "jshint ./bin/cleancss .",
  7. "prepublish": "npm run check",
  8. "test": "vows"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/clean-css/clean-css-cli.git"
  13. },
  14. "keywords": [
  15. "css",
  16. "optimizer",
  17. "minifier"
  18. ],
  19. "bin": {
  20. "cleancss": "./bin/cleancss"
  21. },
  22. "author": "Jakub Pawlowicz <[email protected]>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/clean-css/clean-css-cli/issues"
  26. },
  27. "main": "index.js",
  28. "files": [
  29. "bin",
  30. "History.md",
  31. "index.js",
  32. "LICENSE",
  33. "README.md"
  34. ],
  35. "homepage": "https://github.com/clean-css/clean-css-cli#readme",
  36. "dependencies": {
  37. "chokidar": "^3.5.2",
  38. "clean-css": "^5.3.3",
  39. "commander": "7.x",
  40. "glob": "^7.1.6"
  41. },
  42. "devDependencies": {
  43. "http-proxy": "1.x",
  44. "jshint": "^2.13.0",
  45. "source-map": "0.5.x",
  46. "vows": "^0.8.3"
  47. },
  48. "engines": {
  49. "node": ">= 10.12.0"
  50. }
  51. }