forked from Glavin001/atom-beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 2.66 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "atom-beautify",
"main": "./lib/beautify",
"version": "0.24.0",
"private": true,
"description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, and SQL in Atom",
"repository": {
"type": "git",
"url": "https://github.com/Glavin001/atom-beautify"
},
"bugs": {
"url": "https://github.com/Glavin001/atom-beautify/issues"
},
"license": "MIT",
"author": {
"name": "Glavin Wiechert",
"email": "[email protected]",
"url": "https://github.com/Glavin001"
},
"contributors": [
{
"name": "Donald Pipowitch",
"email": "[email protected]",
"url": "https://github.com/donaldpipowitch"
},
{
"name": "László Károlyi",
"url": "https://github.com/karolyi"
},
{
"name": "Marco Tanzi",
"url": "https://github.com/mtanzi"
},
{
"name": "gvn lazar suntop",
"url": "https://github.com/gvn"
},
{
"name": "Vadim K.",
"url": "https://github.com/vadirn"
},
{
"name": "Filipe Silva",
"url": "https://github.com/filipesilva"
}
],
"engines": {
"atom": ">0.50.0"
},
"dependencies": {
"analytics-node": "^1.0.2",
"async": "^0.9.0",
"atom-message-panel": "^1.1.1",
"atom-space-pen-views": "^2.0.3",
"coffee-formatter": "^0.1.1",
"editorconfig": "^0.11.4",
"emissary": "^1.0.0",
"expand-home-dir": "0.0.2",
"extend": "^1.2.1",
"js-beautify": "^1.5.5",
"lodash": "2.4.1",
"loophole": "^1.0.0",
"node-dir": "^0.1.6",
"node-uuid": "^1.4.1",
"prettydiff": "^1.11.2",
"space-pen": "^4.3.0",
"strip-json-comments": "^0.1.3",
"temp": "^0.8.0",
"typescript-formatter": "~0.1.4",
"yaml-front-matter": "^3.2.3"
},
"activationCommands": {
"atom-workspace": [
"beautify:help-debug-editor",
"beautify:beautify-editor",
"core:save",
"core:save-as"
],
".tree-view .file .name": [
"beautify:beautify-file"
],
".tree-view .directory .name": [
"beautify:beautify-directory"
]
},
"keywords": [
"atom",
"beautify",
"beautifier",
"js-beautify",
"format",
"pretty",
"html",
"handlebars",
"mustache",
"xml",
"css",
"javascript",
"json",
"css",
"sass",
"scss",
"less",
"sql",
"markdown",
"php",
"python",
"ruby",
"coffeescript",
"typescript",
"c",
"c++",
"cpp",
"objective-c",
"c-sharp",
"c#",
"uncrustify",
"java",
"pawn",
"vala",
"d",
"erb",
"editorconfig",
"yaml",
"front matter",
"jekyll",
"marko"
]
}