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