forked from RoyalMist/vscode-eex-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.77 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
{
"name": "vscode-eex-format",
"displayName": "Elixir Templates Formatter",
"description": "Format elixir templates files",
"version": "0.2.0",
"publisher": "RoyalMist",
"license": "MIT",
"bugs": "https://github.com/RoyalMist/vscode-eex-format/issues",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/RoyalMist/vscode-eex-format"
},
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:eex",
"onLanguage:HTML (EEx)",
"onLanguage:html-eex",
"onLanguage:phoenix-heex"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "html",
"aliases": [
"html"
],
"extensions": [
".html",
".eex",
".leex"
]
},
{
"id": "eex",
"aliases": [
"EEx"
],
"extensions": [
".eex",
".leex"
]
},
{
"id": "HTML (EEx)",
"aliases": [
"HTML (EEx)"
],
"extensions": [
".html.eex",
".html.leex"
]
},
{
"id": "html-eex",
"aliases": [
"html-eex"
],
"extensions": [
".html.eex",
".html.leex"
]
}
],
"configuration": {
"type": "object",
"title": "VSCode EEx Beautify configuration",
"properties": {
"vscode-eex-format.tabStops": {
"type": "number",
"default": 2,
"description": "Set number of spaces per indent (default 2)"
},
"vscode-eex-format.tab": {
"type": "boolean",
"default": false,
"description": "Indent using tabs"
},
"vscode-eex-format.indentBy": {
"type": "number",
"default": 0,
"description": "Indent the output by NUMBER steps (default 0)"
},
"vscode-eex-format.stopOnErrors": {
"type": "boolean",
"default": false,
"description": "Stop when invalid nesting is encountered in the input"
},
"vscode-eex-format.keepBlankLines": {
"type": "number",
"default": 0,
"description": "Set number of consecutive blank lines (default 0)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"tslint": "^6.1.3",
"typescript": "^4.0.5",
"vscode": "^1.1.37"
}
}