forked from Glavin001/atom-beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
181 lines (181 loc) · 4.32 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "atom-beautify",
"main": "./dist/index.js",
"version": "1.0.0",
"description": "Beautifier for Atom powered by Unibeautify",
"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": "Steven Zeck",
"email": "[email protected]",
"url": "https://github.com/szeck87"
},
{
"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"
},
{
"name": "Ramón Cahenzli",
"url": "https://github.com/psy-q"
},
{
"name": "Clemens Damke",
"url": "https://github.com/Cortys"
},
{
"name": "Zhang YANG",
"url": "https://github.com/ProgramFan"
},
{
"name": "Daniel Bayley",
"url": "https://github.com/danielbayley"
},
{
"name": "Murphy Randle",
"url": "https://github.com/splodingsocks"
},
{
"name": "Luis Arias",
"url": "https://github.com/kaaloo"
},
{
"name": "Bati Sengul",
"url": "https://github.com/Focus"
},
{
"name": "Dheepak Krishnamurthy",
"url": "https://github.com/kdheepak89"
},
{
"name": "Ayoub Adib",
"url": "https://github.com/ayoubdev"
},
{
"name": "Frederic Delbos",
"url": "https://github.com/fdelbos"
},
{
"name": "Patrick Steele-Idem",
"url": "https://github.com/psteeleidem"
},
{
"name": "Joost van Doorn",
"url": "https://github.com/JoostvDoorn"
},
{
"name": "Arman Yessenamanov",
"url": "https://github.com/yesenarman"
},
{
"name": "Sebastian DiLorenzo",
"url": "https://github.com/Sebastian-D"
},
{
"name": "Émile Bergeron",
"url": "https://github.com/emileber"
}
],
"engines": {
"atom": ">=1.21.0 <2.0.0"
},
"atomTestRunner": "atom-test-runner-jest",
"activationCommands": {
"atom-workspace": [
"atom-beautify:help-debug-editor",
"atom-beautify:beautify-editor",
"atom-beautify:open-settings",
"core:save",
"core:save-as"
],
".tree-view .file .name": [
"atom-beautify:beautify-file"
],
".tree-view .directory .name": [
"atom-beautify:beautify-directory"
]
},
"keywords": [
"atom",
"unibeautify",
"beautify",
"beautifier",
"format",
"pretty",
"clean"
],
"dependencies": {
"@unibeautify/beautifier-eslint": "^0.4.1",
"@unibeautify/beautifier-js-beautify": "^0.3.2",
"@unibeautify/beautifier-prettier": "^0.7.5",
"@unibeautify/beautifier-prettydiff": "^0.5.3",
"bluebird": "^3.5.1",
"cosmiconfig": "^4.0.0",
"eslint": "^4.19.1",
"js-beautify": "^1.7.5",
"prettier": "^1.11.1",
"prettydiff2": "^2.2.7",
"unibeautify": "^0.10.1"
},
"devDependencies": {
"@types/atom": "^1.25.0",
"@types/bluebird": "^3.5.20",
"@types/cosmiconfig": "^4.0.0",
"@types/event-kit": "^2.4.0",
"@types/jest": "^22.2.2",
"@types/lodash": "^4.14.106",
"@types/node": "^9.6.1",
"atom-test-runner-jest": "^0.1.3",
"jest": "^22.4.3",
"jest-preset-atom": "^0.1.9",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-clean-code": "^0.2.6",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.8.1"
},
"scripts": {
"build": "npm run lint && npm run clean && npm run compile && npm run docs",
"clean": "rimraf dist",
"compile": "tsc",
"docs": "ts-node script/index",
"lint": "tslint {src,spec}/**/*.ts",
"prepublishOnly": "npm run build",
"start": "tsc --watch",
"test": "atom --test spec"
}
}