-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 2.19 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
{
"name": "haxe-test-adapter",
"displayName": "Haxe Test Explorer",
"description": "Run your Haxe tests in the Sidebar of Visual Studio Code",
"icon": "images/icon.png",
"author": "Alexander Blum <[email protected]>",
"publisher": "vshaxe",
"version": "2.0.7",
"license": "MIT",
"homepage": "https://github.com/vshaxe/haxe-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/haxe-test-adapter.git"
},
"bugs": {
"url": "https://github.com/vshaxe/haxe-test-adapter/issues"
},
"badges": [
{
"url": "https://api.travis-ci.org/vshaxe/haxe-test-adapter.svg?branch=master",
"href": "https://travis-ci.org/vshaxe/haxe-test-adapter",
"description": "Travis CI Status"
}
],
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"haxe"
],
"scripts": {
"vscode:prepublish": "haxe build.hxml",
"postinstall": "lix download"
},
"main": "bin/main.js",
"devDependencies": {
"lix": "^15.12.0"
},
"engines": {
"vscode": "^1.67.0",
"nadako.vshaxe": "^2.23.0"
},
"extensionDependencies": [
"nadako.vshaxe"
],
"activationEvents": [
"onLanguage:haxe",
"onView:test",
"onCommand:haxeTestExplorer.setup"
],
"contributes": {
"commands": [
{
"title": "Setup",
"command": "haxeTestExplorer.setup",
"category": "Haxe Test Explorer"
}
],
"configuration": {
"title": "Haxe Test Explorer",
"properties": {
"haxeTestExplorer.testCommand": {
"type": "array",
"scope": "resource",
"default": [
"${haxe}",
"test.hxml",
"-lib",
"test-adapter"
],
"markdownDescription": "Command for building and running the tests. `${haxe}` is replaced with `\"haxe.executable\"`.",
"items": {
"type": "string"
}
},
"haxeTestExplorer.launchConfiguration": {
"type": "string",
"scope": "resource",
"default": "Debug",
"markdownDescription": "Name of the launch configuration to use for debugging. (make sure you add `--lib test-adapter` to your compiler arguments)"
}
}
}
},
"__metadata": {
"id": "9e0a4c2a-45e9-4f5d-9981-3fadda76009b",
"publisherDisplayName": "Haxe Foundation",
"publisherId": "bdf58939-bf37-40d4-9543-90fcc14fd490"
}
}