-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.37 KB
/
package.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "js-beautify-with-blade",
"version": "1.0.4",
"description": "A fork from js-beautify to support Blade templates",
"main": "js/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThePlanet-Tech/js-beautify.git"
},
"keywords": [
"beautify",
"beautifier",
"code-quality",
"blade-formatter",
"blade-beautify"
],
"author": {
"name": "khaled sadek",
"email": "[email protected]"
},
"bin": {
"css-beautify": "js/bin/css-beautify.js",
"html-beautify": "js/bin/html-beautify.js",
"js-beautify": "js/bin/js-beautify.js"
},
"license": "MIT",
"browserslist": "ie 11",
"bundleDependencies": false,
"contributors": [
{
"name": "Vital Batmanov",
"email": "[email protected]"
},
{
"name": "Chris J. Shull",
"email": "[email protected]"
},
{
"name": "Gian Marco Gherardi",
"email": "[email protected]"
},
{
"name": "Stan",
"email": "[email protected]"
},
{
"name": "Vittorio Gambaletta",
"email": "[email protected]"
},
{
"name": "Daniel Stockman",
"email": "[email protected]"
},
{
"name": "Harutyun Amirjanyan",
"email": "[email protected]"
},
{
"name": "Nochum Sossonko",
"email": "[email protected]"
},
{
"name": "Liam Newman",
"email": "[email protected]"
}
],
"dependencies": {
"config-chain": "^1.1.12",
"editorconfig": "^0.15.3",
"glob": "^7.1.3",
"mkdirp": "^1.0.4",
"nopt": "^5.0.0"
},
"deprecated": false,
"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",
"requirejs": "^2.3.6",
"serve": "^11.3.2",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0"
},
"directories": {
"lib": "js/lib",
"test": "js/test"
},
"engines": {
"node": ">=10"
},
"files": [
"js/bin/",
"js/lib/*.js",
"js/lib/unpackers/",
"js/index.js",
"js/src/**/*"
],
"bugs": {
"url": "https://github.com/ThePlanet-Tech/js-beautify/issues"
},
"homepage": "https://github.com/ThePlanet-Tech/js-beautify#readme"
}