forked from FabianLauer/vs-code-xml-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "vs-code-xml-format",
"displayName": "XML Formatter",
"description": "A simple XML formatter for VS Code.",
"version": "0.0.3",
"publisher": "fabianlauer",
"author": "Fabian Lauer",
"homepage": "https://github.com/FabianLauer/vs-code-xml-format",
"icon": "icon.png",
"galleryBanner": {
"color": "#f79627",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/FabianLauer/vs-code-xml-format/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/FabianLauer/vs-code-xml-format"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages", "Other"
],
"activationEvents": [
"onLanguage:xml",
"onLanguage:html"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "^0.10.1"
},
"dependencies": {
"xml-parser": "^1.2.1"
}
}