-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.74 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
{
"name": "z80-unit-tests",
"displayName": "Z80 Unit Tests",
"icon": "assets/icon.png",
"publisher": "maziac",
"description": "Runs Z80 assembler unit tests.",
"author": {
"name": "Thomas Busse"
},
"version": "1.3.0",
"license": "MIT",
"homepage": "https://github.com/maziac/z80-unit-tests",
"repository": {
"type": "git",
"url": "https://github.com/maziac/z80-unit-tests.git"
},
"bugs": {
"url": "https://github.com/maziac/z80-unit-tests/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"z80",
"unit test"
],
"main": "out/main.js",
"scripts": {
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "nyc --reporter=text mocha --ui tdd -r ts-node/register test/**/*.ts"
},
"dependencies": {
"@types/assert": "^1.5.2",
"path": "^0.12.7",
"tslib": "^1.14.1",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1"
},
"devDependencies": {
"@types/vscode": "^1.52.0",
"typescript": "^3.9.7"
},
"engines": {
"vscode": "^1.52.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer",
"maziac.dezog"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Z80 Unit Test Explorer configuration",
"properties": {
"z80UnitTestExplorer.logpanel": {
"description": "write diagnostic logs to an output panel",
"type": "boolean",
"scope": "resource"
},
"z80UnitTestExplorer.logfile": {
"description": "write diagnostic logs to the given file",
"type": "string",
"scope": "resource"
}
}
}
}
}