forked from gorkem/vscode-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.52 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
{
"name": "java",
"displayName": "Language Support for Java(TM) by Red Hat",
"description": "Language Support for Java(TM) for Visual Studio Code provided by Red Hat",
"author": "Red Hat",
"icon": "icons/icon128.png",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.8",
"publisher": "redhat",
"bugs" : "https://github.com/redhat-developer/vscode-java/issues",
"preview": true,
"engines": {
"vscode": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-java"
},
"categories": [
"Languages",
"Linters"
],
"activationEvents": [
"onLanguage:java",
"onCommand:java.show.references",
"onCommand:java.open.output",
"workspaceContains:pom.xml",
"workspaceContains:build.gradle"
],
"main": "./out/src/extension",
"contributes": {
"languages": [{
"id": "java",
"extensions": [ ".class" ]
}],
"snippets": [{
"language": "java",
"path": "./snippets/java.json"
}],
"configuration": {
"type": "object",
"title": "Java configuration",
"properties": {
"java.home": {
"type": ["string", "null"],
"default": null,
"description": "Specifies the folder path to the JDK 8 used to launch the Java Language Server."
},
"java.jdt.ls.vmargs": {
"type": ["string", "null"],
"default": "-noverify -Xmx1G",
"description": "Specifies extra VM arguments used to launch the Java Language Server. Eg. use `-noverify -Xmx1G` to bypass class verification and increase the heap size to 1GB"
}
}
}
},
"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": "mvn -f ../java-language-server/pom.xml -Pvscode-build -Dmaven.test.skip=true clean verify",
"tslint": "gulp tslint"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32",
"@types/glob":"5.0.30",
"gulp" :"^3.9.1",
"gulp-tslint": "^6.1.2",
"tslint" : "^3.15.1"
},
"dependencies": {
"vscode-languageclient": "^2.6.0",
"find-java-home": "git+https://github.com/gorkem/node-find-java-home.git#registry_fix",
"http-proxy-agent": "^1.0.0",
"https-proxy-agent": "^1.0.0",
"tmp" : "^0.0.29",
"decompress": "^4.0.0",
"progress-stream": "^1.2.0",
"path-exists":"^3.0.0",
"expand-home-dir":"^0.0.3",
"glob":"^7.1.1"
}
}