-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
174 lines (174 loc) · 4.55 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "vscode-elixir",
"displayName": "vscode-elixir",
"description": "Elixir support for VSCode",
"keywords": ["Elixir", "syntax"],
"version": "1.1.0",
"publisher": "mjmcloug",
"icon": "images/logo.png",
"main": "./out/src/elixirMain",
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fr1zle/vscode-elixir.git"
},
"bugs": {
"url": "https://github.com/fr1zle/vscode-elixir/issues"
},
"homepage": "https://github.com/fr1zle/vscode-elixir",
"categories": ["Languages"],
"activationEvents": ["onLanguage:elixir"],
"emmet.syntaxProfiles": {
"HTML (Eex)": "html"
},
"contributes": {
"languages": [
{
"id": "elixir",
"aliases": ["Elixir", "elixir"],
"extensions": [".ex", ".exs"],
"configuration": "./elixir.configuration.json"
},
{
"id": "Eex",
"aliases": ["Eex", "eex"],
"extensions": [".eex"]
},
{
"id": "HTML (Eex)",
"aliases": ["HTML (Eex)"],
"extensions": [".html.eex"],
"configuration": "./html.eex.configuration.json"
}
],
"grammars": [
{
"language": "elixir",
"scopeName": "source.elixir",
"path": "./syntaxes/elixir.json"
},
{
"language": "Eex",
"scopeName": "text.elixir",
"path": "./syntaxes/eex.json"
},
{
"language": "HTML (Eex)",
"scopeName": "text.html.elixir",
"path": "./syntaxes/html (eex).json"
}
],
"snippets": [
{
"language": "elixir",
"path": "./snippets/snippets.json"
}
],
"problemMatchers": [
{
"name": "mixCompileError",
"owner": "elixir",
"fileLocation": ["relative", "${workspaceRoot}"],
"severity": "error",
"pattern": {
"regexp": "^\\*\\* \\((\\w+)\\) (.*):(\\d+): (.*)$",
"file": 2,
"location": 3,
"message": 0
}
},
{
"name": "mixCompileWarning",
"owner": "elixir",
"fileLocation": ["relative", "${workspaceRoot}"],
"severity": "warning",
"pattern": [
{
"regexp": "^warning: (.*)$",
"message": 1
},
{
"regexp": "^ (.*):(\\d+)(.*)$",
"file": 1,
"location": 2,
"message": 3
}
]
},
{
"name": "mixTestFailure",
"owner": "elixir",
"fileLocation": ["relative", "${workspaceRoot}"],
"severity": "warning",
"pattern": [
{
"regexp": "^\\s*\\d+\\) (.*)$",
"message": 1
},
{
"regexp": "^\\s*(.*):(\\d+)$",
"file": 1,
"location": 2
}
]
}
],
"configuration": {
"type": "object",
"title": "Elixir settings",
"properties": {
"elixir.useElixirSense": {
"type": "boolean",
"default": true,
"description": "Use elixir-sense instead of alchemist-server"
},
"elixir.autoSpawnElixirSenseServers": {
"type": "boolean",
"default": true,
"description": "Automatically handle spawning of elixir-sense servers for each folder in the workspace"
},
"elixir.command": {
"type": "string",
"default": "elixir",
"description": "Command to be run for launching the elixir_sense server providing intellisense features. Defaults to 'elixir'"
},
"elixir.elixirEnv": {
"type": "string",
"default": "dev",
"description": "Project environment"
},
"elixir.projectPath": {
"type": "string",
"default": "",
"description": "The path to the mix project in the folder structure of your project"
}
}
},
"commands": [
{
"command": "extension.selectElixirSenseWorkspaceFolder",
"title": "Start ElixirSense server for workspace folder..."
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build": "vsce package",
"lint": "tslint --project ."
},
"devDependencies": {
"tslint": "^5.5.0",
"typescript": "^2.1.0",
"mocha": "^2.3.3",
"vsce": "^1.22.0",
"vscode": "^1.1.4",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}