forked from Gimly/vscode-matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.83 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
100
101
102
103
104
105
106
107
108
{
"name": "matlab",
"displayName": "Matlab",
"description": "MATLAB support for Visual Studio Code",
"version": "1.6.0",
"publisher": "Gimly81",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"homepage": "https://github.com/Gimly/matlab-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Gimly/matlab-vscode.git"
},
"activationEvents": [
"onLanguage:matlab"
],
"main": "./out/src/matlabMain",
"icon": "images/icon.png",
"bugs": "https://github.com/Gimly/matlab-vscode/issues",
"contributes": {
"languages": [
{
"id": "matlab",
"aliases": [
"MATLAB",
"matlab"
],
"extensions": [
".m"
],
"configuration": "language-configuration.json"
}
],
"grammars": [
{
"language": "matlab",
"scopeName": "source.matlab",
"path": "./syntaxes/MATLAB-Language-grammar/Matlab.tmbundle/Syntaxes/MATLAB.tmLanguage"
},
{
"injectTo": [
"source.matlab"
],
"scopeName": "matlab-functions.injection",
"path": "./syntaxes/matlab-functions.tmLanguage"
}
],
"snippets": [
{
"language": "matlab",
"path": "./snippets/matlab.json"
}
],
"configuration": {
"title": "Matlab configuration",
"type": "object",
"properties": {
"matlab.matlabpath": {
"type": "string",
"default": null,
"description": "The path to the matlab executable."
},
"matlab.mlintpath": {
"type": "string",
"default": null,
"description": "The path to the mlint executable"
},
"matlab.lintOnSave": {
"type": "boolean",
"default": true,
"description": "Run the linting on save of file."
},
"matlab.linterEncoding": {
"type": "string",
"default": "utf8",
"description": "This sets the encoding for the linting, default is utf8. Use if your console uses a different encoding."
},
"matlab.linterConfig": {
"type": "string",
"default": null,
"description": "This allows to pass a configuration settings file for the mlint linter. Enter the full path for the linter settings file to use."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"iconv-lite": "^0.4.19"
}
}