2020-08-17 02:50:14 +00:00
{
"name" : "goc" ,
"displayName" : "Goc Coverage" ,
2020-08-17 08:27:52 +00:00
"description" : "Goc Coverage can display coverage vairation in real time. Goc is a comprehensive coverage testing system for The Go Programming Language, especially for some complex scenarios, like system testing code coverage collection and accurate testing." ,
2020-09-13 02:12:30 +00:00
"version" : "0.0.5" ,
2020-08-17 08:27:52 +00:00
"publisher" : "lyyyuna" ,
"repository" : {
"url" : "https://github.com/qiniu/goc"
} ,
2020-08-17 02:50:14 +00:00
"engines" : {
"vscode" : "^1.43.0"
} ,
"categories" : [
"Other"
] ,
"activationEvents" : [
"onLanguage:go"
] ,
"main" : "./out/extension.js" ,
"contributes" : {
"commands" : [
{
"command" : "extension.switch" ,
"title" : "Enable/Disable coverage report"
}
] ,
"configuration" : {
"title" : "Goc" ,
"properties" : {
"goc.serverUrl" : {
"type" : "string" ,
"default" : "http://127.0.0.1:7777" ,
"description" : "Specify the goc server url."
2020-09-03 07:25:27 +00:00
} ,
"goc.debug" : {
"type" : "boolean" ,
"default" : false ,
"description" : "Turn on debug mode to log more details."
2020-08-17 02:50:14 +00:00
}
}
}
} ,
"scripts" : {
"vscode:prepublish" : "npm run compile" ,
"compile" : "tsc -p ./" ,
"watch" : "tsc -watch -p ./" ,
"pretest" : "npm run compile" ,
"test" : "node ./out/test/runTest.js"
} ,
"devDependencies" : {
"@types/glob" : "^7.1.1" ,
2020-09-03 07:25:27 +00:00
"@types/log4js" : "^2.3.5" ,
2020-08-17 02:50:14 +00:00
"@types/mocha" : "^5.2.7" ,
"@types/node" : "^12.11.7" ,
2020-08-17 08:27:52 +00:00
"@types/vscode" : "^1.43.0" ,
2020-08-17 02:50:14 +00:00
"glob" : "^7.1.5" ,
"mocha" : "^6.2.2" ,
"tslint" : "^5.20.0" ,
2020-09-03 07:25:27 +00:00
"typescript" : "^3.6.4" ,
2020-08-17 02:50:14 +00:00
"vscode-test" : "^1.2.2"
} ,
"dependencies" : {
2020-09-03 07:25:27 +00:00
"axios" : "^0.19.2" ,
2020-09-13 02:12:30 +00:00
"log4js" : "^6.3.0" ,
"upath" : "^1.2.0"
2020-08-17 02:50:14 +00:00
}
}