-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "jm-ampl-0-01",
"displayName": "JM.AMPL-0.01",
"description": "An extension for AMPL language highlighting",
"version": "0.0.1",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "ampl.run",
"aliases": ["AMPL", "ampl"],
"extensions": [".run"],
"configuration": "./language-configuration.json"
}, {
"id": "ampl.mod",
"aliases": ["AMPL", "ampl"],
"extensions": [".mod"],
"configuration": "./language-configuration.json"
}, {
"id": "ampl.dat",
"aliases": ["AMPL", "ampl"],
"extensions": [".dat"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "ampl.run",
"scopeName": "source.run",
"path": "./syntaxes/run.tmLanguage.json"
}, {
"language": "ampl.mod",
"scopeName": "source.mod",
"path": "./syntaxes/mod.tmLanguage.json"
}, {
"language": "ampl.dat",
"scopeName": "source.dat",
"path": "./syntaxes/dat.tmLanguage.json"
}]
}
}