-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (32 loc) · 920 Bytes
/
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
{
"name": "mel",
"version": "0.1.2",
"engines": { "vscode": "*" },
"publisher": "sator-imaging",
"displayName": "MEL - Maya Embedded Language",
"description": "Adding MEL language support.",
"categories": [ "Languages" ],
"icon": "icon.png",
"homepage": "http://www.sator-imaging.com/",
"license": "https://github.com/textmate/mel.tmbundle",
"repository": {
"type": "git",
"url": "https://github.com/sator-imaging/Visual-Studio-Code-MEL-Language.git"
},
"bugs": {
"url": "https://github.com/sator-imaging/Visual-Studio-Code-MEL-Language/issues"
},
"contributes": {
"languages": [{
"id": "mel",
"extensions": [ ".mel", ".ma" ],
"aliases": [ "MEL", "Mel", "mel" ],
"configuration": "./mel.configuration.json"
}],
"grammars": [{
"language": "mel",
"scopeName": "source.mel",
"path": "./syntaxes/MEL.tmLanguage"
}]
}
}