forked from redhat-developer/vscode-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "vscode-xml",
"displayName": "XML Support for VS Code",
"description": "XML editing support",
"version": "0.1.0",
"publisher": "gorkem",
"preview": true,
"keywords": [
"xml"
],
"engines": {
"vscode": "^1.17.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"activationEvents": [
"onLanguage:xml"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -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"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"gulp": "^4.0.0",
"gulp-tslint": "^8.1.2",
"mocha": "^5.2.0",
"tslint": "^5.7.0",
"typescript": "^2.0.3",
"vscode": "^1.1.5"
},
"dependencies": {
"expand-home-dir": "^0.0.3",
"find-java-home": "0.2.0",
"glob": "^7.1.1",
"gulp-install": "^1.1.0",
"path-exists": "^3.0.0",
"tmp": "^0.0.31",
"vscode-languageclient": "^3.2.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"
}
}
}
}
}