Ei kuvausta

package.json 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "clean-css",
  3. "version": "2.2.23",
  4. "author": "Jakub Pawlowicz <jakub@goalsmashers.com> (http://twitter.com/GoalSmashers)",
  5. "description": "A well-tested CSS minifier",
  6. "license": "MIT",
  7. "keywords": [
  8. "css",
  9. "minifier"
  10. ],
  11. "homepage": "https://github.com/GoalSmashers/clean-css",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/GoalSmashers/clean-css.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/GoalSmashers/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": "jshint .",
  35. "test": "vows"
  36. },
  37. "dependencies": {
  38. "commander": "2.2.x"
  39. },
  40. "devDependencies": {
  41. "browserify": "4.x",
  42. "jshint": "2.5.x",
  43. "nock": "0.28.x",
  44. "uglify-js": "2.4.x",
  45. "vows": "0.7.x"
  46. },
  47. "engines": {
  48. "node": ">=0.8.0"
  49. }
  50. }