-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "ParaSail",
"displayName": "%displayName%",
"description": "%description%",
"icon": "logo_parasail.png",
"version": "0.9.1",
"publisher": "ohenley",
"author": "ohenley",
"engines": { "vscode": "*" },
"galleryBanner": {
"color": "#AAAAAA",
"theme": "dark"
},
"preview": true,
"keywords": [
"parasail",
"ParaSail"
],
"license": "LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/ohenley/parasail-vscode"
},
"bugs": {
"url": "https://github.com/ohenley/parasail-vscode/issues",
"email": "olivier.henley@gmail.com"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "parasail",
"extensions": [ ".psl", ".psi"],
"aliases": [ "ParaSail", "parasail" ],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "parasail",
"scopeName": "source.parasail",
"path": "./syntaxes/parasail.tmLanguage.json"
}]
}
}