forked from pthorsson/vscode-jsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
45
46
47
48
49
50
{
"name": "vscode-jsp",
"displayName": "Java Server Pages (JSP)",
"description": "(unmaintained) JSP language support for Visual Studio Code, ported from TextMate's JSP bundle.",
"version": "0.0.3",
"publisher": "pthorsson",
"icon": "ext-icon.png",
"author": {
"name": "Patrik Thorsson",
"url": "https://github.com/pthorsson",
"email": "[email protected]"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "jsp",
"aliases": [
"Java Server Pages",
"jsp",
"JSP",
"jstl",
"JSTL"
],
"extensions": [
".tag",
".jsp",
".jspf"
],
"configuration": "./jsp-configuration.json"
}
],
"grammars": [
{
"language": "jsp",
"scopeName": "text.html.jsp",
"path": "./syntaxes/jsp.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"source.js": "javascript"
}
}
]
}
}