forked from bramvbilsen/Matlab-Code-Run-for-VS-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 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
{
"name": "matlab-code-runner",
"displayName": "Matlab Code Runner",
"description": "Enables Matlab code execution from VS Code.",
"version": "1.0.0",
"repository": {
"url": "https://github.com/akselaase/Matlab-Code-Run-for-VS-Code",
"type": "GitHub"
},
"publisher": "akselaase",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:matlab",
"onCommand:matlab-code-runner.runMatlabFile",
"onCommand:matlab-code-runner.runMatlabSelection",
"onCommand:matlab-code-runner.runMatlabSection"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "matlab-code-runner.runMatlabFile",
"title": "Run Matlab File"
},
{
"command": "matlab-code-runner.runMatlabSelection",
"title": "Run Matlab Selection"
},
{
"command": "matlab-code-runner.runMatlabSection",
"title": "Run Matlab Section"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"@vscode/test-electron": "^1.6.1",
"eslint": "^7.21.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"source-map-support": "^0.5.12",
"typescript": "^4.2.2",
"vsce": "^2.6.3"
}
}