-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 4.54 KB
/
package.json
File metadata and controls
169 lines (169 loc) · 4.54 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "irule",
"displayName": "F5 Networks iRules",
"description": "F5 Networks iRules Extension. Supports all BIG-IP versions up to 17.1",
"publisher": "bitwisecook",
"version": "1.7.4",
"keywords": [
"f5",
"f5networks",
"irule",
"irules",
"remote development",
"remote",
"icr",
"bigip",
"big-ip"
],
"engines": {
"vscode": "^1.74.0"
},
"bugs": {
"url": "https://github.com/bitwisecook/vscode-iRule/issues"
},
"license": "MIT",
"icon": "images/f5.png",
"galleryBanner": {
"color": "#DCDCDC",
"theme": "light"
},
"homepage": "https://github.com/bitwisecook/vscode-iRule/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bitwisecook/vscode-iRule.git"
},
"categories": [
"Formatters",
"Other",
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:irule-lang"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "iRules",
"properties": {
"conf.irule-lang.diag.whenprio.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for when missing priority.",
"scope": "workspace"
},
"conf.irule-lang.diag.set.dynamic.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for set targeting dynamic variable.",
"scope": "workspace"
},
"conf.irule-lang.diag.doublesubst.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for double substition.",
"scope": "workspace"
},
"conf.irule-lang.diag.arginject.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for argument injection.",
"scope": "workspace"
},
"conf.irule-lang.diag.deprecated_events.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for deprecated events.",
"scope": "workspace"
},
"conf.irule-lang.diag.deprecated_commands.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for deprecated commands.",
"scope": "workspace"
},
"conf.irule-lang.diag.invalid_char_auto.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for obvious invalid characters that can be fixed automatically.",
"scope": "workspace"
},
"conf.irule-lang.diag.invalid_char_manual.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable code diagnostic for invalid characters that need manual interpretation.",
"scope": "workspace"
}
}
}
],
"commands": [
{
"command": "irule-lang.escapeToQuotedTcl",
"title": "Escape Selections to Tcl Quoted String",
"category": "irule"
}
],
"languages": [
{
"id": "irule-lang",
"aliases": [
"irule",
"iRule"
],
"extensions": [
".irul",
".irule",
".tcl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "irule-lang",
"scopeName": "source.irule",
"path": "./out/syntaxes/irule.json"
}
],
"snippets": [
{
"language": "irule-lang",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npx js-yaml syntaxes/irule.tmlanguage.yaml > out/syntaxes/irule.json",
"webpack": "webpack --mode development && npx js-yaml syntaxes/irule.tmlanguage.yaml > out/syntaxes/irule.json",
"webpack-dev": "webpack --mode development --watch && npx js-yaml syntaxes/irule.tmlanguage.yaml > out/syntaxes/irule.json",
"test-compile": "tsc -p ./ && npx js-yaml syntaxes/irule.tmlanguage.yaml > out/syntaxes/irule.json",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.0",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}