forked from Gimly/vscode-fortran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "fortran",
"displayName": "fortran",
"description": "An extension for VS Code which provides support for the Fortran language.",
"version": "0.1.0",
"publisher": "Gimly81",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages",
"Snippets"
],
"homepage": "https://github.com/Gimly/vscode-fortran/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Gimly/vscode-fortran.git"
},
"icon": "images/icon.png",
"bugs": "https://github.com/Gimly/vscode-fortran/issues",
"contributes": {
"languages": [
{
"id": "fortran",
"aliases": [
"Fortran - Punchcard",
"fortran"
],
"extensions": [
".f",
".F",
".f77",
".F77",
".for",
".FOR",
".fpp",
".FPP"
],
"configuration": "./fortran.configuration.json"
},
{
"id": "fortran-modern",
"aliases": [
"Fortran - Modern"
],
"extensions": [
".f90",
".F90",
".f95",
".F95",
".f03",
".F03",
".f08",
".F08"
],
"configuration": "./modern.configuration.json"
}
],
"grammars": [
{
"language": "fortran-modern",
"scopeName": "source.fortran.modern",
"path": "./syntaxes/modern.tmLanguage"
},
{
"language": "fortran",
"scopeName": "source.fortran",
"path": "./syntaxes/fortran.tmLanguage"
}
],
"commands": [
{
"command": "fortran.make_all",
"title": "Make all",
"category": "Fortran"
},
{
"command": "fortran.make_clean",
"title": "Make clean",
"category": "Fortran"
}
],
"snippets": [
{
"language": "fortran-modern",
"path": "./snippets/fortran.json"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}