package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "js-beautify",
  3. "version": "1.8.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. "dependencies": {
  48. "config-chain": "^1.1.12",
  49. "editorconfig": "^0.15.2",
  50. "glob": "^7.1.3",
  51. "mkdirp": "~0.5.0",
  52. "nopt": "~4.0.1"
  53. },
  54. "devDependencies": {
  55. "benchmark": "^2.1.4",
  56. "jshint": "^2.9.6",
  57. "mocha": "^5.2.0",
  58. "mustache": "^3.0.1",
  59. "node-static": "^0.7.11",
  60. "requirejs": "^2.3.6",
  61. "webpack": "^4.26.0",
  62. "webpack-command": "^0.4.2"
  63. }
  64. }