Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit cd64351

Browse files
Winston LiuWinston Liu
Winston Liu
authored and
Winston Liu
committed
Prepare 0.9.0 release
1 parent c030755 commit cd64351

File tree

1 file changed

+138
-138
lines changed

1 file changed

+138
-138
lines changed

package.json

Lines changed: 138 additions & 138 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,138 @@
1-
{
2-
"name": "ide-java",
3-
"main": "./lib/main",
4-
"version": "0.8.3",
5-
"description": "Java language support for Atom-IDE.",
6-
"repository": "https://github.com/atom/ide-java",
7-
"license": "MIT",
8-
"scripts": {
9-
"test": "atom --test test"
10-
},
11-
"engines": {
12-
"atom": ">=1.21.0"
13-
},
14-
"configSchema": {
15-
"javaHome": {
16-
"order": 10,
17-
"type": "string",
18-
"default": "",
19-
"description": "Absolute path to Java 8 or later home folder used to launch the Java language server."
20-
},
21-
"virtualMachine": {
22-
"order": 20,
23-
"type": "object",
24-
"properties": {
25-
"extraArgs": {
26-
"type": "string",
27-
"default": "-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication",
28-
"description": "Extra arguments passed to the Java VM when launching the Java 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."
29-
}
30-
}
31-
},
32-
"errors": {
33-
"order": 30,
34-
"type": "object",
35-
"title": "Warnings and Errors",
36-
"properties": {
37-
"incompleteClasspathSeverity": {
38-
"type": "string",
39-
"title": "Incomplete Classpath Severity",
40-
"enum": [
41-
"ignore",
42-
"info",
43-
"warning",
44-
"error"
45-
],
46-
"default": "warning",
47-
"description": "Severity of the message when the classpath is incomplete for a Java file."
48-
}
49-
}
50-
}
51-
},
52-
"atomTestRunner": "./test/runner",
53-
"dependencies": {
54-
"atom-languageclient": "0.9.5",
55-
"atom-select-list": "^0.7.1",
56-
"decompress": "^4.2.0"
57-
},
58-
"devDependencies": {
59-
"atom-mocha-test-runner": "^1.0.1",
60-
"chai": "^3.5.0",
61-
"chai-as-promised": "^5.3.0",
62-
"mocha": "^3.4.2",
63-
"mocha-appveyor-reporter": "^0.4.0",
64-
"mocha-junit-and-console-reporter": "^1.6.0"
65-
},
66-
"enhancedScopes": [
67-
"source.java"
68-
],
69-
"consumedServices": {
70-
"linter-indie": {
71-
"versions": {
72-
"2.0.0": "consumeLinterV2"
73-
}
74-
},
75-
"atom-ide-busy-signal": {
76-
"versions": {
77-
"0.1.0": "consumeBusySignal"
78-
}
79-
},
80-
"console": {
81-
"versions": {
82-
"0.1.0": "consumeConsole"
83-
}
84-
},
85-
"datatip": {
86-
"versions": {
87-
"0.1.0": "consumeDatatip"
88-
}
89-
},
90-
"signature-help": {
91-
"versions": {
92-
"0.1.0": "consumeSignatureHelp"
93-
}
94-
},
95-
"status-bar": {
96-
"versions": {
97-
"^1.0.0": "consumeStatusBar"
98-
}
99-
}
100-
},
101-
"providedServices": {
102-
"autocomplete.provider": {
103-
"versions": {
104-
"2.0.0": "provideAutocomplete"
105-
}
106-
},
107-
"code-format.range": {
108-
"versions": {
109-
"0.1.0": "provideCodeFormat"
110-
}
111-
},
112-
"code-highlight": {
113-
"versions": {
114-
"0.1.0": "provideCodeHighlight"
115-
}
116-
},
117-
"definitions": {
118-
"versions": {
119-
"0.1.0": "provideDefinitions"
120-
}
121-
},
122-
"find-references": {
123-
"versions": {
124-
"0.1.0": "provideFindReferences"
125-
}
126-
},
127-
"outline-view": {
128-
"versions": {
129-
"0.1.0": "provideOutlines"
130-
}
131-
},
132-
"code-actions": {
133-
"versions": {
134-
"0.1.0": "provideCodeActions"
135-
}
136-
}
137-
}
138-
}
1+
{
2+
"name": "ide-java",
3+
"main": "./lib/main",
4+
"version": "0.9.0",
5+
"description": "Java language support for Atom-IDE.",
6+
"repository": "https://github.com/atom/ide-java",
7+
"license": "MIT",
8+
"scripts": {
9+
"test": "atom --test test"
10+
},
11+
"engines": {
12+
"atom": ">=1.21.0"
13+
},
14+
"configSchema": {
15+
"javaHome": {
16+
"order": 10,
17+
"type": "string",
18+
"default": "",
19+
"description": "Absolute path to Java 8 or later home folder used to launch the Java language server."
20+
},
21+
"virtualMachine": {
22+
"order": 20,
23+
"type": "object",
24+
"properties": {
25+
"extraArgs": {
26+
"type": "string",
27+
"default": "-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication",
28+
"description": "Extra arguments passed to the Java VM when launching the Java 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."
29+
}
30+
}
31+
},
32+
"errors": {
33+
"order": 30,
34+
"type": "object",
35+
"title": "Warnings and Errors",
36+
"properties": {
37+
"incompleteClasspathSeverity": {
38+
"type": "string",
39+
"title": "Incomplete Classpath Severity",
40+
"enum": [
41+
"ignore",
42+
"info",
43+
"warning",
44+
"error"
45+
],
46+
"default": "warning",
47+
"description": "Severity of the message when the classpath is incomplete for a Java file."
48+
}
49+
}
50+
}
51+
},
52+
"atomTestRunner": "./test/runner",
53+
"dependencies": {
54+
"atom-languageclient": "0.9.5",
55+
"atom-select-list": "^0.7.1",
56+
"decompress": "^4.2.0"
57+
},
58+
"devDependencies": {
59+
"atom-mocha-test-runner": "^1.0.1",
60+
"chai": "^3.5.0",
61+
"chai-as-promised": "^5.3.0",
62+
"mocha": "^3.4.2",
63+
"mocha-appveyor-reporter": "^0.4.0",
64+
"mocha-junit-and-console-reporter": "^1.6.0"
65+
},
66+
"enhancedScopes": [
67+
"source.java"
68+
],
69+
"consumedServices": {
70+
"linter-indie": {
71+
"versions": {
72+
"2.0.0": "consumeLinterV2"
73+
}
74+
},
75+
"atom-ide-busy-signal": {
76+
"versions": {
77+
"0.1.0": "consumeBusySignal"
78+
}
79+
},
80+
"console": {
81+
"versions": {
82+
"0.1.0": "consumeConsole"
83+
}
84+
},
85+
"datatip": {
86+
"versions": {
87+
"0.1.0": "consumeDatatip"
88+
}
89+
},
90+
"signature-help": {
91+
"versions": {
92+
"0.1.0": "consumeSignatureHelp"
93+
}
94+
},
95+
"status-bar": {
96+
"versions": {
97+
"^1.0.0": "consumeStatusBar"
98+
}
99+
}
100+
},
101+
"providedServices": {
102+
"autocomplete.provider": {
103+
"versions": {
104+
"2.0.0": "provideAutocomplete"
105+
}
106+
},
107+
"code-format.range": {
108+
"versions": {
109+
"0.1.0": "provideCodeFormat"
110+
}
111+
},
112+
"code-highlight": {
113+
"versions": {
114+
"0.1.0": "provideCodeHighlight"
115+
}
116+
},
117+
"definitions": {
118+
"versions": {
119+
"0.1.0": "provideDefinitions"
120+
}
121+
},
122+
"find-references": {
123+
"versions": {
124+
"0.1.0": "provideFindReferences"
125+
}
126+
},
127+
"outline-view": {
128+
"versions": {
129+
"0.1.0": "provideOutlines"
130+
}
131+
},
132+
"code-actions": {
133+
"versions": {
134+
"0.1.0": "provideCodeActions"
135+
}
136+
}
137+
}
138+
}

0 commit comments

Comments
 (0)