package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "html-minifier",
  3. "description": "Highly configurable, well-tested, JavaScript-based HTML minifier.",
  4. "version": "3.5.21",
  5. "keywords": [
  6. "cli",
  7. "compress",
  8. "compressor",
  9. "css",
  10. "html",
  11. "htmlmin",
  12. "javascript",
  13. "min",
  14. "minification",
  15. "minifier",
  16. "minify",
  17. "optimize",
  18. "optimizer",
  19. "pack",
  20. "packer",
  21. "parse",
  22. "parser",
  23. "uglifier",
  24. "uglify"
  25. ],
  26. "homepage": "https://kangax.github.io/html-minifier/",
  27. "author": "Juriy \"kangax\" Zaytsev",
  28. "maintainers": [
  29. "Alex Lam <alexlamsl@gmail.com>",
  30. "Juriy Zaytsev <kangax@gmail.com> (http://perfectionkills.com/)"
  31. ],
  32. "contributors": [
  33. "Gilmore Davidson (https://github.com/gilmoreorless)",
  34. "Hugo Wetterberg <hugo@wetterberg.nu>",
  35. "Zoltan Frombach <tssajo@gmail.com>"
  36. ],
  37. "license": "MIT",
  38. "bin": {
  39. "html-minifier": "./cli.js"
  40. },
  41. "main": "src/htmlminifier.js",
  42. "repository": {
  43. "type": "git",
  44. "url": "git+https://github.com/kangax/html-minifier.git"
  45. },
  46. "bugs": {
  47. "url": "https://github.com/kangax/html-minifier/issues"
  48. },
  49. "engines": {
  50. "node": ">=4"
  51. },
  52. "scripts": {
  53. "dist": "grunt dist",
  54. "test": "grunt test"
  55. },
  56. "dependencies": {
  57. "camel-case": "3.0.x",
  58. "clean-css": "4.2.x",
  59. "commander": "2.17.x",
  60. "he": "1.2.x",
  61. "param-case": "2.1.x",
  62. "relateurl": "0.2.x",
  63. "uglify-js": "3.4.x"
  64. },
  65. "devDependencies": {
  66. "grunt": "1.0.x",
  67. "grunt-browserify": "5.3.x",
  68. "grunt-contrib-uglify": "3.4.x",
  69. "gruntify-eslint": "4.0.x",
  70. "phantomjs-prebuilt": "2.1.x",
  71. "qunit": "2.x"
  72. },
  73. "benchmarkDependencies": {
  74. "brotli": "1.3.x",
  75. "chalk": "2.4.x",
  76. "cli-table": "0.3.x",
  77. "lzma": "2.3.x",
  78. "minimize": "2.2.x",
  79. "progress": "2.0.x"
  80. },
  81. "files": [
  82. "src/*.js",
  83. "cli.js",
  84. "sample-cli-config-file.conf"
  85. ]
  86. }