-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"name": "streamblocks-cal",
"displayName": "cal",
"description": "CAL Actor Language support",
"author": "EPFL VLSC",
"license": "GPL-3.0-or-later",
"version": "0.0.1",
"publisher": "streamblcoks",
"repository": {
"type": "git",
"url": "https://github.com/streamblocks/streamblocks-vscode"
},
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "cal",
"aliases": [
"CAL Actor Language",
"CAL",
"cal"
],
"extensions": [
".cal",
".nl",
".CAL"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cal",
"scopeName": "source.cal",
"path": "./syntaxes/cal.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "StreamBlocks Configuration",
"properties": {
"streamblocks.home": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the folder path of StreamBlocks CAL compiler",
"scope": "window"
}
}
}
},
"activationEvents": [
"onLanguage:cal"
],
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}