-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.92 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.92 KB
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
{
"name": "vsc-bazel-tools",
"displayName": "VSC Bazel Tools",
"description": "IntelliSense support for C/C++ targets built with bazel.",
"version": "0.6.7",
"publisher": "bjob",
"icon": "images/bazel_tools_icon.png",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/bjob/vscode-bazel-tools.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other",
"Testing"
],
"keywords": [
"bazel",
"C++",
"IntelliSense"
],
"activationEvents": [
"workspaceContains:**/WORKSPACE*"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "vsc-bazel-tools.generateCompileCommands",
"title": "vsc-bazel-tools: Generate compile commands"
}
],
"configuration": {
"title": "vsc-bazel-tools",
"properties": {
"vsc-bazel-tools.customCompileCommandsTarget": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies a custom bazel target (label) to generate the compile commands."
},
"vsc-bazel-tools.activateTesting": {
"type": [
"boolean",
"true"
],
"default": true,
"description": "Discover tests in test explorer UI."
},
"vsc-bazel-tools.testDiscoverLabel": {
"type": [
"string",
"//..."
],
"default": "//...",
"description": "This label will be used to search for tests. Defaults to workspace search (//...)"
},
"vsc-bazel-tools.bazelWorkspaceDir": {
"type": [
"string",
"null"
],
"default": null,
"description": "Full path to a bazel workspace directory (substitution of predefined vsc variables is currently not possible)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.54.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/fs-extra": "^11.0.2",
"fs-extra": "^11.1.1",
"tslog": "^4.9.2",
"util": "^0.12.5"
}
}