Няма описание

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "html-minifier",
  3. "description": "HTML minifier with lint-like capabilities.",
  4. "version": "0.6.9",
  5. "keywords": [
  6. "html",
  7. "minifier",
  8. "lint"
  9. ],
  10. "homepage": "http://kangax.github.io/html-minifier/",
  11. "author": "Juriy \"kangax\" Zaytsev",
  12. "maintainers": [
  13. "Juriy Zaytsev <kangax@gmail.com> (http://perfectionkills.com)"
  14. ],
  15. "contributors": [
  16. "Gilmore Davidson (https://github.com/gilmoreorless)",
  17. "Hugo Wetterberg <hugo@wetterberg.nu>",
  18. "Zoltan Frombach <tssajo@gmail.com>"
  19. ],
  20. "license": {
  21. "type": "MIT",
  22. "url": "https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"
  23. },
  24. "bin": "./cli.js",
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/kangax/html-minifier"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/kangax/html-minifier/issues"
  31. },
  32. "engines": {
  33. "node": ">=0.10.0"
  34. },
  35. "directories": {
  36. "test": "tests"
  37. },
  38. "scripts": {
  39. "test": "grunt test"
  40. },
  41. "dependencies": {
  42. "change-case": "2.1.x",
  43. "clean-css": "2.2.x",
  44. "cli": "0.6.x",
  45. "uglify-js": "2.4.x",
  46. "relateurl": "0.2.x"
  47. },
  48. "devDependencies": {
  49. "cli-table": "0.3.x",
  50. "grunt": "0.4.x",
  51. "grunt-contrib-concat": "0.5.x",
  52. "grunt-contrib-jshint": "0.10.x",
  53. "grunt-contrib-qunit": "0.5.x",
  54. "grunt-contrib-uglify": "0.6.x",
  55. "grunt-exec": "0.4.x",
  56. "grunt-jscs": "0.7.x",
  57. "load-grunt-tasks": "0.6.x",
  58. "qunit": "0.7.x",
  59. "time-grunt": "1.0.x"
  60. },
  61. "files": [
  62. "dist",
  63. "cli.js",
  64. "sample-cli-config-file.conf",
  65. "CHANGELOG.md",
  66. "LICENSE"
  67. ],
  68. "main": "./dist/htmlminifier.js"
  69. }