This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
88 lines (88 loc) · 2.12 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
{
"name": "codewind-java-profiler",
"displayName": "Codewind Java Profiler",
"description": "Code Highlighting for Eclipse Codewind's Java Load Testing",
"version": "0.9.0",
"author": "IBM",
"publisher": "IBM",
"license": "EPL-2.0",
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"keywords": [
"Liberty",
"Profiling",
"Java",
"Load",
"Eclipse"
],
"icon": "res/img/codewind-logo.png",
"homepage": "https://www.eclipse.org/codewind/",
"repository": {
"type": "git",
"url": "https://github.com/eclipse/codewind-java-profiler"
},
"bugs": {
"url": "https://github.com/eclipse/codewind-java-profiler/issues"
},
"engines": {
"vscode": "^1.26.0"
},
"activationEvents": [
"onLanguage:java"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Codewind Profiling Configuration",
"properties": {
"codewindProfiling.showProfiling": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Whether the method profiling information should be displayed in the editor pane."
},
"codewindProfiling.profilingfolder": {
"scope": "resource",
"type": "string",
"default": "load-test",
"description": "The folder name containing load-test results files."
},
"codewindProfiling.trace.server": {
"scope": "resource",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w & cd client && tsc -b",
"postinstall": "cd client && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"dependencies": {
"@types/dockerode": "^2.5.13",
"@types/ip": "^1.1.0",
"@types/tar-fs": "^1.16.1",
"dockerode": "^2.5.8",
"ip": "^1.1.5"
}
}