This repository has been archived by the owner on May 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.96 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": "rust-test-lens",
"displayName": "Rust Test Lens",
"description": "Adds a code lens to quickly run or debug a single test for your Rust code.",
"version": "0.3.2",
"publisher": "hdevalke",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"Rust",
"debug",
"codelens",
"lldb",
"multi-root ready"
],
"activationEvents": [
"onCommand:extension.debugTest",
"onLanguage:rust"
],
"main": "./out/extension",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hdevalke/rust-test-lens.git"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"fmt": "npx prettier --write 'src/**/*.ts'"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"prettier": "1.19.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"vsce": "^1.71.0",
"vscode": "^1.1.36"
},
"extensionDependencies": [
"vadimcn.vscode-lldb"
],
"contributes": {
"commands": [
{
"command": "extension.debugTest",
"title": "Debug Rust Test"
}
],
"configuration": {
"type": "object",
"title": "Rust Test Lens",
"properties": {
"rust-test-lens.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable this extension"
},
"rust-test-lens.args.main": {
"type": "array",
"default": [],
"description": "Enable or disable this extension"
},
"rust-test-lens.args.tests": {
"type": "array",
"default": [
"--nocapture"
],
"description": "Enable or disable this extension"
}
}
}
}
}