-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "vscode-tarantula",
"displayName": "Tarantula",
"description": "Find what's causing a test suite to fail with tarantula fault localisation.",
"version": "0.1.0",
"keywords": [
"test",
"testing",
"unittest",
"tarantula",
"fault localization",
"fault localisation",
"solcover",
"mocha",
"solidity",
"ethereum"
],
"preview": true,
"publisher": "tintinweb",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/ConsenSys/vscode-tarantula/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/vscode-tarantula"
},
"main": "./src/extension.js",
"activationEvents": [
"*",
"onView:vscode-tarantula-highScore",
"onCommand:vscode-tarantula.processDir"
],
"contributes": {
"commands": [
{
"command": "vscode-tarantula.processDir",
"title": "Process coverage results to compute tarantula scores",
"category": "Tarantula"
}
],
"views": {
"explorer": [
{
"id": "vscode-tarantula-highScore",
"name": "Tarantula Highscore"
}
]
},
"configuration": {
"type": "object",
"title": "tarantula",
"properties": {
}
}
},
"dependencies": {
"tarantula-fl": "^1.0.0"
}
}