-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.85 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "lcov-generator",
"displayName": "Lcov Generator",
"description": "Generate lcov from profraw/gcda files",
"version": "0.0.2",
"publisher": "sr-team",
"license": "MIT",
"engines": {
"vscode": "^1.70.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sr-tream/vscode-lcov-generator"
},
"bugs": {
"url": "https://github.com/sr-tream/vscode-lcov-generator/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"C",
"C++",
"clang",
"clang++",
"gcc",
"g++",
"lcov",
"gcov",
"coverage",
"profraw",
"gcda",
"gcno"
],
"activationEvents": [
"onStartupFinished"
],
"contributes":{
"configuration": {
"type": "object",
"title": "Lcov Generator configuration",
"properties": {
"lcov-generator.llvmProfdata": {
"type": "string",
"default": "llvm-profdata",
"description": "The path to llvm-profdata"
},
"lcov-generator.llvmCov": {
"type": "string",
"default": "llvm-cov",
"description": "The path to llvm-cov"
},
"lcov-generator.lcov": {
"type": "string",
"default": "lcov",
"description": "The path to lcov"
},
"lcov-generator.profrawExt": {
"type": "string",
"default": "profraw",
"description": "The extension of profraw files"
},
"lcov-generator.copyLcovTo": {
"type": "string",
"default": "",
"description": "The path to copy lcov file. For multiple artifacts, lcov files are merged.\nWhen empty, lcov file stored in folder with artifact."
},
"lcov-generator.watchedFolders": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cwd":{
"type": "string",
"description": "The current working directory for artifact"
},
"program": {
"type": "string",
"description": "The path to artifact"
}
},
"required": ["program"]
}
}
}
}
},
"main": "./out/bundle",
"scripts": {
"esbuild": "esbuild ./src/extension.ts --bundle --outfile=out/bundle.js --external:vscode --format=cjs --platform=node",
"vscode:prepublish": "npm run format && npm run check-ts && npm run esbuild -- --minify --keep-names",
"compile": "npm run esbuild -- --sourcemap",
"watch": "npm run esbuild -- --sourcemap --watch",
"check-ts": "tsc -noEmit -p ./",
"format": "clang-format -i --glob=\"src/*.ts\"",
"package": "npm run vscode:prepublish && vsce package",
"git-clang-format": "git-clang-format --extensions=ts"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^6.0.40",
"@types/vscode": "1.70.0",
"clang-format": "^1.7.0",
"esbuild": "^0.14.13",
"glob": "^7.1.4",
"mocha": "^9.2.0",
"ovsx": "^0.8.3",
"typescript": "^4.5.5",
"vsce": "^2.15.0",
"vscode-test": "^1.3.0"
},
"dependencies": {
"vscode-cmake-tools": "^1.1.0"
}
}