-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
107 lines (107 loc) · 3.11 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
{
"name": "ibm-assembler",
"license": "MIT",
"displayName": "ibm-assembler",
"description": "IBM Assembler Language Highlighter",
"repository": "https://github.com/dkelosky/vscode-ibm-hlasm",
"version": "0.8.1",
"keywords": [
"z/OS",
"s390",
"mvs",
"assembler",
"mainframe",
"s390x",
"HLASM",
"ASMA90",
"assembly"
],
"publisher": "kelosky",
"icon": "docs/images/icon.png",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "HLASM configuration",
"properties": {
"hlasmServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"hlasmServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [
{
"id": "hlasm",
"aliases": [
"IBM HLASM",
"hlasm"
],
"extensions": [
".hlasm",
".asm",
".s",
".asmpgm",
".mac",
".asmmac"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hlasm",
"scopeName": "source.hlasm",
"path": "./syntaxes/hlasm.tmLanguage.json"
}
],
"configurationDefaults": {
"[hlasm]": {
"editor.autoIndent": "none",
"editor.rulers": [
71,
72,
80
]
}
}
},
"activationEvents": [
"onLanguage:hlasm"
],
"scripts": {
"vscode:prepublish": "npm run build:syntax && cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"build:syntax": "js-yaml syntaxes/hlasm.tmLanguage.yaml > syntaxes/hlasm.tmLanguage.json",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/jest": "^24.0.16",
"@types/node": "^8.0.0",
"jest": "^24.8.0",
"js-yaml": "^3.13.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}