forked from Gimly/vscode-fortran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
51
52
53
54
{
"name": "fortran-ekon",
"displayName": "fortran - ekon",
"description": "An extension for VS Code which provides syntax highlight support for the Fortran language. With some modifications on File extensions and Comments for EkonBenefits.",
"version": "0.0.1",
"publisher": "EkonBenefits",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Programming Languages"
],
"homepage": "https://github.com/Gimly/vscode-fortran/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ekonbenefits/vscode-fortran.git"
},
"icon": "images/icon.png",
"bugs": "https://github.com/ekonbenefits/vscode-fortran/issues",
"contributes": {
"languages": [
{
"id": "fortran",
"aliases": [
"Fortran - Punchcard - Ekon",
"fortran"
],
"extensions": [
".f",
".F",
".f77",
".F77",
".for",
".FOR",
".fpp",
".FPP",
".CVR",
".DEC",
".cvr",
".dec"
],
"configuration": "./fortran.configuration.json"
}
],
"grammars": [
{
"language": "fortran",
"scopeName": "source.fortran",
"path": "./syntaxes/fortran.tmLanguage"
}
]
}
}