forked from ajdawson/vscode-ecflow-syntax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "ecflow-syntax",
"displayName": "ecFlow Syntax Highlighting",
"description": "Language support for ecFlow shell scripts and definition files",
"version": "1.0.0",
"publisher": "ajdawson",
"repository": {
"url": "https://github.com/ajdawson/vscode-ecflow-syntax"
},
"bugs": {
"url": "https://github.com/ajdawson/vscode-ecflow-sytnax"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"ecflow"
],
"contributes": {
"languages": [
{
"id": "ecflow-shell",
"aliases": [
"ecflow-shell"
],
"extensions": [
".ecf",
".sms"
],
"configuration": "./ecflow-shell-configuration.json"
},
{
"id": "ecflow-def",
"aliases": [
"ecflow-def",
"sms-def"
],
"extensions": [
".def"
],
"configuration": "./ecflow-def-configuration.json"
}
],
"grammars": [
{
"language": "ecflow-shell",
"scopeName": "source.ecflow-shell",
"path": "./syntaxes/ecflow-shell.tmLanguage.json"
},
{
"language": "ecflow-def",
"scopeName": "source.ecflow-def",
"path": "./syntaxes/ecflow-def.tmLanguage.json"
}
]
},
"devDependencies": {
"vsce": "^1.96.1"
},
"scripts": {
"build": "node src/ecflow-shell-grammar/builder.js",
"package": "vsce package",
"deploy": "vsce publish",
"ci_consistency_check": "test/ci_consistency_check.sh"
}
}