-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.87 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
{
"name": "ibm-jcl",
"displayName": "ibm-jcl",
"description": "IBM Job Control Language",
"repository": {
"url": "https://github.com/dkelosky/vscode-ibm-jcl",
"type": "git"
},
"version": "0.11.0",
"keywords": [
"z/OS",
"s390",
"mvs",
"jcl",
"job control language"
],
"publisher": "kelosky",
"icon": "docs/images/icon.png",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"contributes": {
"semanticTokenScopes": [
{
"language": "jcl",
"scopes": {
"what": [
"invalid.illegal.jcl"
]
}
}
],
"configuration": {
"type": "object",
"title": "JCL configuration",
"properties": {
"jclServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"configurationDefaults": {
"[jcl]": {
"editor.autoIndent": "none",
"editor.rulers": [
72,
80
]
}
},
"languages": [
{
"id": "jcl",
"aliases": [
"JCL",
"jcl"
],
"extensions": [
".jcl",
".cntl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jcl",
"scopeName": "source.jcl",
"path": "./syntaxes/jcl.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:jcl"
],
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint . --ext ts",
"build:syntax": "js-yaml syntaxes/jcl.tmLanguage.yaml > syntaxes/jcl.tmLanguage.json",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/jest": "^24.0.16",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"jest": "^24.8.0",
"js-yaml": "^3.13.1",
"ts-jest": "^24.0.2",
"typescript": "^3.8.3"
}
}