-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "crazy",
"displayName": "Crazy Extension",
"description": "Testing Crazy Extension Behavior",
"version": "0.0.2",
"publisher": "kieferrm",
"repository": {
"url": "https://github.com/kieferrm/vscode-22804"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "crazy.floodDiagnostics",
"title": "Crazy: Flood Problems View"
},
{
"command": "crazy.floodFileDiagnostics",
"title": "Crazy: Flood Problems View with Files"
},
{
"command": "crazy.clearDiagnostics",
"title": "Crazy: Clear All Diagnostic Collections"
},
{
"command": "crazy.floodOutput",
"title": "Crazy: Flood Output Channel"
},
{
"command": "crazy.floodTwoOutputs",
"title": "Crazy: Flood Two Output Channels At The Same Time"
},
{
"command": "crazy.clearOutputs",
"title": "Crazy: Clear All Output Channels"
},
{
"command": "crazy.floodTenTerminals",
"title": "Crazy: Flood Ten Terminals With Output At The Same Time"
},
{
"command": "crazy.closeTerminals",
"title": "Crazy: Close All Terminals"
},
{
"command": "crazy.floodWithExceptions",
"title": "Crazy: Flood Core With Exceptions From Extension"
},
{
"command": "crazy.floodAllAtOnce",
"title": "Crazy: Flood Core with Everything At Once"
},
{
"command": "crazy.createExtensionHostLoad",
"title": "Crazy: Create Extension Host Load"
},
{
"command": "crazy.createExternalProcessLoad",
"title": "Crazy: Create External Process Load"
}
]
},
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.1.10",
"typescript": "2.6.2",
"@types/node": "9.3.0"
}
}