-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 4.07 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "cryptol",
"displayName": "Cryptol Highlighting",
"description": "",
"version": "0.7.0",
"publisher": "jldodds",
"engines": {
"vscode": "^1.18.0"
},
"icon": "galois_github.png",
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/GaloisInc/cryptol-vscode.git"
},
"activationEvents": [
"onLanguage:cryptol",
"onLanguage:saw"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "cryptol",
"aliases": [
"Cryptol",
"cryptol"
],
"extensions": [
".cry"
],
"configuration": "./language-configuration.json"
},
{
"id": "saw",
"aliases": [
"SAW",
"saw"
],
"extensions": [
".saw"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cryptol",
"scopeName": "source.cryptol",
"path": "./syntaxes/cryptol.tmLanguage.json"
},
{
"language": "saw",
"scopeName": "source.saw",
"path": "./syntaxes/saw.tmLanguage.json"
}
],
"commands": [
{
"command": "cryptol.runInTerminal",
"title": "Cryptol: Run the current file in Cryptol"
},
{
"command": "cryptol.runSelectionInTerminal",
"title": "Cryptol: Run the current selection in Cryptol"
},
{
"command": "cryptol.typeSelectionInTerminal",
"title": "Cryptol: Type the current selection in Cryptol"
},
{
"command": "cryptol-vscode.enableCodeLens",
"title": "Enable CodeLens",
"category": "CodeLens"
},
{
"command": "cryptol-vscode.disableCodeLens",
"title": "Disable CodeLens"
}
],
"keybindings": [
{
"command": "cryptol.runInTerminal",
"key": "ctrl+shift+c",
"when": "editorTextFocus"
},
{
"command": "cryptol.runSelectionInTerminal",
"key": "ctrl+shift+e",
"when": "editorTextFocus"
},
{
"command": "cryptol.typeSelectionInTerminal",
"key": "ctrl+shift+t",
"when": "editorTextFocus"
}
],
"configuration": {
"properties": {
"cryptol.path": {
"type": "string",
"default": "cryptol",
"description": "The path for the Cryptol REPL"
}
}
},
"snippets": [
{
"language": "cryptol",
"path": "./snippets/cryptol.snippets.json"
},
{
"language": "saw",
"path": "./snippets/saw.snippets.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",
"lint": "eslint . --ext .ts, .tsx"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"vscode-languageclient": "^3.3.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0"
}
}