-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 6.21 KB
/
package.json
File metadata and controls
188 lines (188 loc) · 6.21 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
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
182
183
184
185
186
187
188
{
"name": "vscode-xml",
"displayName": "XML",
"description": "XML Language Support by Red Hat",
"version": "0.3.0",
"author": "Red Hat",
"publisher": "redhat",
"icon": "icons/icon128.png",
"license": "EPL-1.0",
"bugs": "https://github.com/redhat-developer/vscode-xml/issues",
"preview": true,
"keywords": [
"xml",
"xsl",
"xsd"
],
"engines": {
"vscode": "^1.27.0"
},
"activationEvents": [
"onLanguage:xml",
"onLanguage:xsl"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"watch": "tsc -watch -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build-server": "./node_modules/.bin/gulp build_server",
"tslint": "./node_modules/.bin/gulp tslint"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-xml"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters",
"Snippets"
],
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^6.0.40",
"gulp": "^4.0.0",
"gulp-tslint": "^8.1.3",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"vscode": "^1.1.21"
},
"dependencies": {
"expand-home-dir": "^0.0.3",
"find-java-home": "0.2.0",
"glob": "^7.1.1",
"path-exists": "^3.0.0",
"vscode-languageclient": "~5.1.0"
},
"contributes": {
"configuration": {
"type": "object",
"title": "XML configuration",
"properties": {
"xml.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the XML language server.",
"scope": "window"
},
"xml.catalogs": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Array of XML Catalogs",
"scope": "window"
},
"xml.logs.client": {
"type": "boolean",
"default": true,
"description": "Should the server log to client output"
},
"xml.format.splitAttributes": {
"type": "boolean",
"default": false,
"description": "Split multiple attributes each onto a new line",
"scope": "window"
},
"xml.format.joinCDATALines": {
"type": "boolean",
"default": false,
"description": "Join lines in a CDATA tag's content",
"scope": "window"
},
"xml.format.joinContentLines": {
"type": "boolean",
"default": false,
"description": "Join lines in an element's content",
"scope": "window"
},
"xml.format.joinCommentLines": {
"type": "boolean",
"default": false,
"description": "Join comment content on format",
"scope": "window"
},
"xml.format.spaceBeforeEmptyCloseTag": {
"type": "boolean",
"default": true,
"description": "Insert space before end of self closing tag. \nExample:\n <tag/> -> <tag />",
"scope": "window"
},
"xml.format.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable ability to format document",
"scope": "window"
},
"xml.fileAssociations": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"systemId": {
"type": "string",
"description": "The path or URL to the XML schema (XSD or DTD)"
},
"pattern": {
"type": "string",
"description": "File glob pattern. Example: **/*.Format.ps1xml\n\nMore information on the glob syntax: https://docs.oracle.com/javase/tutorial/essential/io/fileOps.html#glob",
"markdownDescription": "File glob pattern. Example: `**/*.Format.ps1xml`\n\nMore information on the glob syntax: https://docs.oracle.com/javase/tutorial/essential/io/fileOps.html#glob"
}
},
"required": [
"systemId",
"pattern"
]
},
"description": "Allows XML schemas to be associated to file name patterns.\n\nExample:\n[{\n \"systemId\": \"path/to/file.xsd\",\n \"pattern\": \"file1.xml\"\n},\n{\n \"systemId\": \"http://www.w3.org/2001/XMLSchema.xsd\",\n \"pattern\": \"**/*.xsd\"\n}]",
"markdownDescription": "Allows XML schemas to be associated to file name patterns.\n\nExample:\n```json\n[{\n \"systemId\": \"path/to/file.xsd\",\n \"pattern\": \"file1.xml\"\n},\n{\n \"systemId\": \"http://www.w3.org/2001/XMLSchema.xsd\",\n \"pattern\": \"**/*.xsd\"\n}]\n```",
"scope": "window"
},
"xml.completion.autoCloseTags": {
"type": "boolean",
"default": true,
"description": "Enable/disable autoclosing of XML tags. \n\nIMPORTANT: Turn off editor.autoClosingTags for this to work",
"scope": "window"
},
"xml.server.vmargs": {
"type": [
"string",
"null"
],
"default": "-noverify -Xmx64M -XX:+UseG1GC -XX:+UseStringDeduplication",
"description": "Specifies extra VM arguments used to launch the XML Language Server. Eg. use `-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication` to bypass class verification, increase the heap size to 1GB and enable String deduplication with the G1 Garbage collector",
"scope": "window"
},
"xml.problems.noGrammar": {
"type": "string",
"enum": [
"ignore",
"hint",
"info",
"warning",
"error"
],
"default": "hint",
"description": "The message severity when a document has no associated grammar.",
"scope": "window"
}
}
},
"configurationDefaults": {
"[xml]": {
"editor.autoClosingBrackets": "never"
}
}
}
}