-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 2.68 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
{
"name": "codewind-ls-node-prof",
"displayName": "Codewind Language Server for Node.js Profiling",
"description": "Code Highlighting for Codewind's JavaScript Load Testing",
"version": "19.3.0",
"author": "IBM",
"publisher": "IBM",
"license": "EPL-2.0",
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"keywords": [
"Codewind",
"Profiling",
"JavaScript",
"Load",
"IBM"
],
"icon": "res/img/microclimate.png",
"homepage": "https://microclimate-dev2ops.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/microclimate-dev2ops/microclimate-ls-node-prof"
},
"bugs": {
"url": "https://github.com/microclimate-dev2ops/microclimate-ls-node-prof/issues"
},
"engines": {
"vscode": "^1.25.0"
},
"activationEvents": [
"onLanguage:javascript",
"onCommand:extension.toggleProfiling"
],
"main": "./vscode/client/out/extension",
"contributes": {
"commands": [
{
"command": "extension.toggleProfiling",
"title": "Toggle Profiling",
"category": "Codewind Profiling"
}
],
"menus": {
"editor/context": [
{
"command": "extension.toggleProfiling",
"group": "2_codewind@1"
}
]
},
"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 vscode/client && npm run update-vscode && cd ../.. && npm run compile",
"compile:client": "tsc -p ./vscode/client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./vscode/client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"watch": "tsc -b -w ./vscode/client/tsconfig.json ./server/tsconfig.json",
"compile": "npm run compile:client && npm run compile:server",
"postinstall": "cd vscode/client && npm install && cd ../../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"typescript": "^3.1.1"
}
}