-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.74 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.74 KB
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
{
"name": "fortran",
"displayName": "fortran",
"description": "An extension for VS Code which provides support for the Fortran language.",
"version": "0.2.0",
"publisher": "Gimly81",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^1.16.0"
},
"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"
},
"activationEvents": [
"onLanguage:fortran-modern"
],
"main": "./out/src/extension",
"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"
}
],
"snippets": [
{
"language": "fortran-modern",
"path": "./snippets/fortran.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.3",
"vscode": "^1.1.5",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}