package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "js-beautify",
  3. "version": "1.14.9",
  4. "description": "beautifier.io for node",
  5. "main": "js/index.js",
  6. "bin": {
  7. "css-beautify": "./js/bin/css-beautify.js",
  8. "html-beautify": "./js/bin/html-beautify.js",
  9. "js-beautify": "./js/bin/js-beautify.js"
  10. },
  11. "directories": {
  12. "lib": "js/lib",
  13. "test": "js/test"
  14. },
  15. "files": [
  16. "js/bin/",
  17. "js/lib/*.js",
  18. "js/lib/unpackers/",
  19. "js/index.js",
  20. "js/src/**/*"
  21. ],
  22. "scripts": {},
  23. "bugs": "https://github.com/beautify-web/js-beautify/issues",
  24. "homepage": "https://beautifier.io/",
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/beautify-web/js-beautify.git"
  28. },
  29. "keywords": [
  30. "beautify",
  31. "beautifier",
  32. "code-quality"
  33. ],
  34. "author": "Einar Lielmanis <einar@beautifier.io>",
  35. "contributors": [
  36. "Vital Batmanov <vital76@gmail.com>",
  37. "Chris J. Shull <chrisjshull@gmail.com>",
  38. "Gian Marco Gherardi <gianmarco.gherardi@gmail.com>",
  39. "Stan <stasson@orc.ru>",
  40. "Vittorio Gambaletta <VittGam@vittgam.net>",
  41. "Daniel Stockman <daniel.stockman@gmail.com>",
  42. "Harutyun Amirjanyan <amirjanyan@gmail.com>",
  43. "Nochum Sossonko <nsossonko@hotmail.com>",
  44. "Liam Newman <bitwiseman@beautifier.io>"
  45. ],
  46. "license": "MIT",
  47. "engines": {
  48. "node": ">=12"
  49. },
  50. "browserslist": "ie 11",
  51. "dependencies": {
  52. "config-chain": "^1.1.13",
  53. "editorconfig": "^1.0.3",
  54. "glob": "^8.1.0",
  55. "nopt": "^6.0.0"
  56. },
  57. "devDependencies": {
  58. "ansi-regex": "^6.0.1",
  59. "benchmark": "^2.1.4",
  60. "codemirror": "^5.65.13",
  61. "jquery": "^3.6.4",
  62. "jshint": "^2.13.6",
  63. "minimist": "^1.2.8",
  64. "mocha": "^10.2.0",
  65. "mustache": "^4.2.0",
  66. "requirejs": "^2.3.6",
  67. "serve": "^14.2.0",
  68. "strip-ansi": "^7.0.1",
  69. "webpack": "^5.81.0",
  70. "webpack-cli": "^4.10.0"
  71. }
  72. }