forked from ArnaudBelcour/asp-syntax-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1012 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "asp-syntax-highlight",
"displayName": "Answer Set Programming syntax highlighter",
"description": "Syntax highlighting for Answer Set Programming",
"version": "0.0.2",
"publisher": "abelcour",
"engines": {
"vscode": "^1.18.0"
},
"homepage": "https://github.com/ArnaudBelcour/asp-syntax-highlight",
"repository": {
"type": "git",
"url": "https://github.com/ArnaudBelcour/asp-syntax-highlight"
},
"icon": "images/icon.png",
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "asp",
"aliases": [
"Answer Set Programming",
"asp"
],
"extensions": [
".lp",
".cl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "asp",
"scopeName": "source.asp",
"path": "./syntaxes/asp.tmLanguage"
}
]
},
"__metadata": {
"id": "e0c89965-ea7d-400a-ad41-2c00751045d3",
"publisherDisplayName": "abelcour",
"publisherId": "bea0f566-1a88-46cf-bc2d-3f45f0dfaeb6"
}
}