package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "js-beautify",
  3. "version": "1.13.0",
  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. "dependencies": {
  48. "config-chain": "^1.1.12",
  49. "editorconfig": "^0.15.3",
  50. "glob": "^7.1.3",
  51. "mkdirp": "^1.0.4",
  52. "nopt": "^5.0.0"
  53. },
  54. "devDependencies": {
  55. "benchmark": "^2.1.4",
  56. "codemirror": "^5.56.0",
  57. "jquery": "^3.5.1",
  58. "jshint": "^2.12.0",
  59. "minimist": ">=1.2.5",
  60. "mocha": "^8.1.1",
  61. "mustache": "^4.0.1",
  62. "serve": "^11.3.2",
  63. "requirejs": "^2.3.6",
  64. "webpack": "^4.44.1",
  65. "webpack-cli": "^3.3.12"
  66. }
  67. }