-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
140 lines (140 loc) · 3.56 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "vshaxe-debug-tools",
"displayName": "Haxe Extension Debug Tools",
"description": "Tools for the development of VSHaxe",
"icon": "images/icon.png",
"publisher": "vshaxe",
"version": "0.0.1",
"engines": {
"vscode": "^1.23.0"
},
"devDependencies": {
"lix": "^15.10.1"
},
"scripts": {
"postinstall": "npx lix download"
},
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/vshaxe-debug-tools"
},
"activationEvents": [
"onCommand:vshaxeDebugTools.visualizeTokenTree",
"onCommand:vshaxeDebugTools.methodResultsView.open",
"onCommand:vshaxeDebugTools.methodResultsView.update",
"onCommand:vshaxeDebugTools.methodResultsView.track",
"onCommand:vshaxeDebugTools.diffFormatterTests",
"onCommand:vshaxeDebugTools.runFormatterTests",
"onCommand:vshaxeDebugTools.runCurrentFormatterTest",
"onCommand:vshaxeDebugTools.clearHaxeMementos",
"onCommand:vshaxeDebugTools.updateExpectedJson",
"onCommand:vshaxeDebugTools.diffExpectedActualJson",
"onLanguage:haxe",
"onLanguage:hxml",
"onLanguage:hxtest",
"onView:haxe.methods",
"onView:haxe.dependencies",
"onView:haxe.methods",
"onView:haxe.cache",
"onWebviewPanel:vshaxeDebugTools.tokenTree",
"workspaceContains:./*.hxml"
],
"main": "bin/extension",
"contributes": {
"commands": [
{
"command": "vshaxeDebugTools.visualizeTokenTree",
"title": "Visualize TokenTree",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.methodResultsView.open",
"title": "Visualize Haxe Method Results",
"category": "Haxe Extension Debug Tools",
"icon": {
"light": "resources/light/json.svg",
"dark": "resources/dark/json.svg"
}
},
{
"command": "vshaxeDebugTools.diffFormatterTests",
"title": "Diff Formatter Tests",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.runFormatterTests",
"title": "Run Formatter Tests",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.runCurrentFormatterTest",
"title": "Run Current Formatter Test",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.clearHaxeMementos",
"title": "Clear Haxe Mementos",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.updateExpectedJson",
"title": "Update Expected.json",
"category": "Haxe Extension Debug Tools"
},
{
"command": "vshaxeDebugTools.diffExpectedActualJson",
"title": "Diff Expected.json with Actual.json",
"category": "Haxe Extension Debug Tools"
}
],
"languages": [
{
"id": "hxtest",
"aliases": [
"Haxe Test"
],
"extensions": [
".hxtest",
".hxtest.disabled"
],
"configuration": "./haxe.configuration.json"
}
],
"grammars": [
{
"language": "hxtest",
"scopeName": "source.hxtest",
"path": "./syntaxes/hxtest.json"
}
],
"menus": {
"view/title": [
{
"command": "vshaxeDebugTools.methodResultsView.open",
"when": "view == haxe.methods",
"group": "navigation@0"
}
],
"explorer/context": [
{
"command": "vshaxeDebugTools.updateExpectedJson",
"when": "resourceFilename =~ /(Actual|Expected)\\.json/"
},
{
"command": "vshaxeDebugTools.diffExpectedActualJson",
"when": "resourceFilename =~ /(Actual|Expected)\\.json/"
}
],
"commandPalette": [
{
"command": "vshaxeDebugTools.updateExpectedJson",
"when": "false"
},
{
"command": "vshaxeDebugTools.diffExpectedActualJson",
"when": "false"
}
]
}
}
}