forked from JakeBecker/ide-elixir
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ide-elixir",
"main": "./lib/ide-elixir",
"version": "0.2.23",
"description": "Atom IDE plugin for Elixir, powered by ElixirLS",
"keywords": [],
"repository": "https://github.com/JakeBecker/ide-elixir",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configurationSchema": {
"title": "ElixirLS configuration",
"properties": {
"elixirLS.dialyzerEnabled": {
"type": "boolean",
"default": true,
"description": "Run ElixirLS's rapid Dialyzer when code is saved"
},
"elixirLS.dialyzerWarnOpts": {
"description": "Dialyzer options to enable or disable warnings. See Dialyzer's documentation for options. Note that the \"race_conditions\" option is unsupported",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string",
"enum": [
"error_handling",
"no_behaviours",
"no_contracts",
"no_fail_call",
"no_fun_app",
"no_improper_lists",
"no_match",
"no_missing_calls",
"no_opaque",
"no_return",
"no_undefined_callbacks",
"no_unused",
"underspecs",
"unknown",
"unmatched_returns",
"overspecs",
"specdiffs"
]
},
"default": []
},
"elixirLS.mixEnv": {
"type": "string",
"description": "Mix environment to use for compilation",
"default": "test",
"minLength": 1
},
"elixirLS.projectDir": {
"type": "string",
"description": "Subdirectory containing Mix project if not in the project root",
"minLength": 1
},
"elixirLS.fetchDeps": {
"type": "boolean",
"description": "Automatically fetch project dependencies when compiling",
"default": true
}
}
},
"dependencies": {
"atom-languageclient": "^0.9.5",
"shelljs": "^0.8.2"
},
"enhancedScopes": [
"source.elixir"
],
"consumedServices": {
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"signature-help": {
"versions": {
"0.1.0": "consumeSignatureHelp"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-actions": {
"versions": {
"0.1.0": "provideCodeActions"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"scripts": {
"prepare": "cd elixir-ls && mix deps.get && mix elixir_ls.release -o ../elixir-ls-release"
}
}