-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
119 lines (119 loc) · 3.79 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
{
"name": "vscode-server-connector",
"displayName": "JBoss Toolkit",
"description": "Allows a user to start, stop and deploy to Red Hat server and runtime products like Wildfly and JBoss EAP (Enterprise Application Platform).",
"version": "0.26.19",
"license": "SEE LICENSE IN LICENSE",
"publisher": "redhat",
"author": "Red Hat",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-server-connector.git"
},
"bugs": "https://github.com/redhat-developer/vscode-server-connector/issues/",
"engines": {
"vscode": "^1.77.0"
},
"activationEvents": [
"onCommand:server.createServer",
"onCommand:server.addLocation",
"onCommand:server.downloadRuntime",
"onCommand:server.startRSP",
"onCommand:server.disconnectRSP",
"onCommand:server.stopRSP",
"onCommand:server.terminateRSP",
"onCommand:server.start",
"onCommand:server.debug",
"onCommand:server.stop",
"onCommand:server.terminate",
"onCommand:server.restart",
"onCommand:server.restartDebug",
"onCommand:server.remove",
"onCommand:server.output",
"onCommand:server.add",
"onCommand:server.publishFull",
"onCommand:server.publishIncremental",
"onCommand:server.actions",
"onView:servers"
],
"categories": [
"Other"
],
"keywords": [
"server",
"runtimes",
"middleware",
"adapters",
"red hat",
"jboss",
"wildfly",
"enterprise application platform",
"eap"
],
"icon": "images/jboss.eap.png",
"main": "./out/src/extension",
"scripts": {
"package": "node ./build/package.js",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"clean": "rm -rf out || rmdir out /s /q",
"watch": "tsc -watch -p ./",
"test": "npm run clean && npm run compile && nyc node ./out/test/test-runner.js",
"ui-test": "npm run compile && extest setup-and-run out/test/ui-test/allTestsSuite.js -o test/ui-test/custom-settings.json -c max",
"public-ui-test": "npm run compile && extest setup-and-run out/test/ui-test/publicTestsSuite.js -o test/ui-test/custom-settings.json -c max",
"update-deps": "node_modules/.bin/ncu --upgrade --loglevel verbose --packageFile package.json && npm update",
"coverage:upload": "codecov -f coverage/coverage-final.json",
"build": "npm run compile && npm run package",
"lint": "eslint src test --fix"
},
"extensionPack": [
"redhat.vscode-rsp-ui"
],
"extensionDependencies": [
"redhat.vscode-rsp-ui"
],
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^18.17.0",
"@types/sinon": "^10.0.0",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chai": "^4.3.4",
"decompress": "^4.2.1",
"download": "^8.0.0",
"eslint": "^7.32.0",
"glob": "^7.1.4",
"mocha": "^9.1.2",
"mocha-jenkins-reporter": "^0.4.5",
"nyc": "^15.1.0",
"@redhat-developer/locators": "^1.5.0",
"@redhat-developer/page-objects": "^1.5.0",
"request": "^2.88.2",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"targz": "^1.0.1",
"tslog": "^3.2.0",
"typescript": "^5.3.3",
"unzip-stream": "^0.3.1",
"utf-8-validate": "^5.0.2",
"selenium-webdriver": "^4.1.0",
"vscode-extension-tester": "^8.7.0",
"@vscode/test-electron": "^2.4.0"
},
"dependencies": {
"@redhat-developer/vscode-extension-proposals": "^0.0.22",
"@redhat-developer/vscode-redhat-telemetry": "0.4.2",
"expand-home-dir": "0.0.3",
"find-java-home": "^1.2.2",
"fs-extra": "10.0.0",
"path-exists": "^4.0.0",
"portfinder": "^1.0.28",
"tcp-port-used": "^1.0.2",
"vscode-server-connector-api": "0.1.7",
"wait-on": "^5.2.1"
}
}