forked from smooth80/brackets-beautify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.46 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.46 KB
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
{
"name": "brackets-beautify",
"title": "Beautify",
"version": "2.13.0",
"description": "Format JavaScript, HTML, and CSS files and related languages.",
"engines": {
"brackets": ">=1.7.0"
},
"homepage": "https://github.com/brackets-beautify/brackets-beautify",
"bugs": "https://github.com/brackets-beautify/brackets-beautify/issues",
"repository": "brackets-beautify/brackets-beautify",
"author": "Drew Hamlett <i@drewh.me> (https://github.com/drewhamlett)",
"contributors": [
"Jan Pilzer (https://github.com/hirse)"
],
"license": "MIT",
"categories": "formatting",
"keywords": [
"brackets-extension",
"beautify",
"beautifier",
"format",
"formatting",
"tidy",
"pretty",
"prettify",
"jsbeautify",
"JavaScript",
"CSS",
"XML",
"HTML",
"SVG"
],
"i18n": [
"de",
"en",
"es",
"fa",
"fr",
"it",
"ja",
"pl",
"pt-br",
"ro",
"zh-cn",
"ru"
],
"package-i18n": {
"de": {
"description": "Formatiere JavaScript, HTML, und CSS Dateien und verwandte Sprachen."
},
"fa": {
"description": "قالببندی فایلهای جاوااسکریپت، HTML و CSS و زبانهای مرتبط."
},
"fr": {
"description": "Formate JavaScript, HTML, les fichiers CSS et les langages liés."
},
"it": {
"description": "Formato JavaScript, HTML e file CSS e linguaggi affini."
},
"pl": {
"description": "Formatuj pliki JavaScript, HTML, i CSS i powiązane języki."
},
"pt-br": {
"description": "Formate arquivos JavaScript, HTML, CSS e linguagens relacionados."
},
"ro": {
"description": "Formatează fișiere JavaScript, HTML și CSS și alte limbaje apropiate."
},
"zh-cn": {
"description": "格式化JavaScript, HTML, CSS文件以及相关的语言。"
},
"ru": {
"description": "Форматируйте JavaScript, HTML, файлы CSS и другие поддерживаемые языки"
}
},
"devDependencies": {
"eslint": "7.x.x",
"js-beautify": "1.13.13",
"tar-to-zip": "2.0.x"
},
"scripts": {
"bundle:win": "npm pack && tar2zip brackets-beautify-%npm_package_version%.tgz",
"update-jsbeautify": "npm install js-beautify -E && node ./build/update-jsbeautify.js",
"update-jsbeautify-next": "npm install js-beautify@next -E && node ./build/update-jsbeautify.js",
"lint": "eslint .",
"test": "npm run lint"
}
}