-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "ruby-solargraph",
"main": "./lib/main",
"version": "0.6.1",
"description": "A Ruby language server featuring code completion and inline documentation",
"keywords": [
"ruby",
"autocomplete"
],
"repository": "https://github.com/castwide/atom-solargraph",
"license": "MIT",
"enhancedScopes": [
"source.ruby"
],
"engines": {
"atom": ">=1.21.0"
},
"dependencies": {
"solargraph-utils": "^0.8.2",
"atom-languageclient": "^0.9.9"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "provideAutocomplete"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"configSchema": {
"commandPath": {
"type": "string",
"default": "solargraph",
"description": "Path to the solargraph command."
}
}
}