-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
153 lines (153 loc) · 3.19 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
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
{
"name": "htcondor",
"displayName": "Htcondor",
"description": "Official extension for Htcondor",
"author": "Max Hartke",
"version": "3.0.0",
"icon": "htcondor.png",
"publisher": "htcondor",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/htcondor/vscode-htcondor"
},
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Snippets"
],
"main": "./dist/extension.js",
"contributes": {
"views": {
"htcondor": [
{
"id": "htcondor.jobDetails",
"name": "Job Details",
"type": "webview",
"when": "remoteName"
},
{
"id": "htcondor",
"name": "Jobs in Selected Log File",
"type": "tree"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "htcondor",
"title": "Htcondor",
"icon": "chtc.svg"
}
]
},
"viewsWelcome": [
{
"view": "htcondor",
"contents": "No log file selected yet. Select one to see job events\n[Open Log File](command:htcondor.selectLogFile)\n"
},
{
"view": "htcondor.jobDetailsLocal",
"contents": "To see job details connect to an Access point via the remote ssh extension"
}
],
"snippets": [
{
"language": "htcondor",
"path": "./snippets/htc-snippets.json"
}
],
"languages": [
{
"id": "htcondor",
"extensions": [
".sub"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "htcondor",
"scopeName": "source.htcondor",
"path": "./htcondor.json"
}
],
"commands": [
{
"command": "htcondor.selectLogFile",
"title": "Select Log File",
"icon": {
"light": "icons/dark/file.svg",
"dark": "icons/dark/file.svg"
}
},
{
"command": "htcondor.showJobs",
"title": "Show Jobs"
},
{
"command": "htcondor.showJobDetails",
"title": "Show Job Details"
}
],
"menus": {
"view/title": [
{
"command": "htcondor.selectLogFile",
"when": "view == htcondor",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "htcondor.showJobs"
}
]
},
"configuration": {
"title": "HTCondor",
"properties": {
"htc.logFile": {
"type": "string",
"default": "",
"description": "Path to the log file."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"axios": "^1.5.0",
"htcondor": "^0.0.29"
}
}