package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "clean-css",
  3. "version": "1.1.7",
  4. "author": "Jakub Pawlowicz <jakub@goalsmashers.com> (http://twitter.com/GoalSmashers)",
  5. "description": "A well-tested CSS minifier",
  6. "keywords": [
  7. "css",
  8. "minifier"
  9. ],
  10. "homepage": "https://github.com/GoalSmashers/clean-css",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/GoalSmashers/clean-css.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/GoalSmashers/clean-css/issues"
  17. },
  18. "bin": {
  19. "cleancss": "./bin/cleancss"
  20. },
  21. "main": "index.js",
  22. "files": [
  23. "bin",
  24. "lib",
  25. "History.md",
  26. "index.js",
  27. "LICENSE"
  28. ],
  29. "scripts": {
  30. "bench": "node ./test/bench.js",
  31. "check": "jshint .",
  32. "prepublish": "jshint .",
  33. "test": "vows"
  34. },
  35. "dependencies": {
  36. "commander": "2.0.x"
  37. },
  38. "devDependencies": {
  39. "vows": "0.7.x",
  40. "jshint": "~2.1.9"
  41. },
  42. "jshintConfig": {
  43. "browser": false,
  44. "maxerr": 100,
  45. "node": true,
  46. "camelcase": true,
  47. "curly": false,
  48. "eqeqeq": false,
  49. "eqnull": false,
  50. "immed": true,
  51. "latedef": true,
  52. "multistr": true,
  53. "noarg": true,
  54. "plusplus": false,
  55. "quotmark": "true",
  56. "regexp": false,
  57. "strict": false,
  58. "trailing": true,
  59. "undef": true,
  60. "unused": true
  61. },
  62. "engines": {
  63. "node": ">=0.8.0"
  64. },
  65. "license": "MIT"
  66. }