package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "clean-css",
  3. "version": "3.4.28",
  4. "author": "Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz)",
  5. "description": "A well-tested CSS minifier",
  6. "license": "MIT",
  7. "keywords": [
  8. "css",
  9. "minifier"
  10. ],
  11. "homepage": "https://github.com/jakubpawlowicz/clean-css",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/jakubpawlowicz/clean-css.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/jakubpawlowicz/clean-css/issues"
  18. },
  19. "bin": {
  20. "cleancss": "./bin/cleancss"
  21. },
  22. "main": "index.js",
  23. "files": [
  24. "bin",
  25. "lib",
  26. "History.md",
  27. "index.js",
  28. "LICENSE"
  29. ],
  30. "scripts": {
  31. "browserify": "browserify --standalone CleanCSS index.js | uglifyjs --compress --mangle -o cleancss-browser.js",
  32. "bench": "node ./test/bench.js",
  33. "check": "jshint ./bin/cleancss .",
  34. "prepublish": "npm run check",
  35. "test": "vows"
  36. },
  37. "dependencies": {
  38. "commander": "2.8.x",
  39. "source-map": "0.4.x"
  40. },
  41. "devDependencies": {
  42. "browserify": "11.x",
  43. "http-proxy": "1.x",
  44. "jshint": "2.8.x",
  45. "nock": "2.x",
  46. "server-destroy": "1.x",
  47. "uglify-js": "2.4.x",
  48. "vows": "0.8.x"
  49. },
  50. "engines": {
  51. "node": ">=0.10.0"
  52. },
  53. "__npminstall_done": true,
  54. "_from": "clean-css@3.4.28",
  55. "_resolved": "https://registry.npmmirror.com/clean-css/-/clean-css-3.4.28.tgz"
  56. }