forked from coreysharris/vscode-macaulay2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.75 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
{
"name": "macaulay2",
"displayName": "Macaulay2",
"description": "Macaulay2 language support",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/coreysharris/vscode-macaulay2"
},
"publisher": "coreysharris",
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:macaulay2"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "macaulay2.startREPL",
"title": "Start M2 REPL"
},
{
"command": "macaulay2.sendToREPL",
"title": "Send code to Macaulay2 REPL"
}
],
"grammars": [
{
"language": "macaulay2",
"scopeName": "source.macaulay2",
"path": "./syntaxes/macaulay2.tmLanguage.json"
}
],
"languages": [
{
"id": "macaulay2",
"aliases": [
"Macaulay2",
"macaulay2"
],
"extensions": [
".m2"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"title": "Macaulay2",
"properties": {
"macaulay2.executablePath": {
"type": "string",
"default": "/Applications/Macaulay2-1.13/bin/m2",
"description": "Location of Macaulay2 executable",
"scope": "application"
}
}
},
"keybindings": [
{
"command": "macaulay2.sendToREPL",
"key": "alt+Enter"
},
{
"command": "macaulay2.startREPL",
"key": "F12"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode-test": "^1.0.0",
"@types/vscode": "^1.36.0",
"tslint": "^5.12.1",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42"
}
}