-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (38 loc) · 1.01 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
{
"name": "conanlight",
"publisher": "SonkengMaldini",
"displayName": "conanLight",
"description": "Bring syntax highlighting to your conan file ",
"author": {
"name": "Sonkeng Maldini"
},
"version": "1.4.0",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/sdmg15/conanlight/"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/sdmg15/conanlight/issues",
"email": "[email protected]"
},
"contributes": {
"languages": [{
"id": "conanfile",
"aliases": ["conanfile", "conanfile"],
"extensions": [".txt"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "conanfile",
"scopeName": "conanfile.txt",
"path": "./syntaxes/conanfile.tmLanguage.json"
}]
}
}