This repository has been archived by the owner on Dec 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "vscode-microprofile",
"displayName": "MicroProfile Language Support",
"description": "Enables language support for MicroProfile specifications in Java files",
"version": "0.0.1",
"publisher": "MicroProfile-Community",
"preview": true,
"license": "EPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MicroShed/microprofile-lsp-client-vscode"
},
"engines": {
"vscode": "^1.25.1"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:java",
"workspaceContains:*.java"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "java",
"extensions": [
".java"
],
"configuration": "./language-configuration.json"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"tslint": "gulp tslint"
},
"devDependencies": {
"@types/glob": "^5.0.35",
"@types/mocha": "^2.2.32",
"@types/node": "^10.12.27",
"gulp": "^4.0.0",
"gulp-tslint": "^6.1.2",
"mocha": "^5.2.0",
"mvn-artifact-download": "^3.1.0",
"tslint": "^5.12.1",
"typescript": "^3.7.2",
"vsce": "^1.45.1",
"vscode": "^1.1.29"
},
"dependencies": {
"decompress": "^4.2.0",
"download": "^7.1.0",
"expand-home-dir": "^0.0.3",
"find-java-home": "^0.2.0",
"glob": "^7.1.2",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"path-exists": "^3.0.0",
"progress-stream": "^2.0.0",
"tmp": "^0.0.33",
"vscode-languageclient": "^4.4.0"
}
}