forked from Godin/vscode-jacoco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1000 Bytes
/
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
{
"name": "vscode-jacoco",
"displayName": "JaCoCo",
"description": "Java(TM) Code Coverage for Visual Studio Code",
"version": "0.0.1",
"license": "EPL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/Godin/vscode-jacoco"
},
"publisher": "Evgeny Mandrikov",
"preview": true,
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:jacoco.showCoverage"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "jacoco.showCoverage",
"title": "Show JaCoCo Coverage"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/xml2js": "0.4.0",
"@types/mocha": "2.2.41",
"typescript": "2.5.3",
"vscode": "1.1.0",
"mocha": "2.3.3"
},
"dependencies": {
"xml2js": "0.4.19"
}
}