This repository has been archived by the owner on Nov 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
120 lines (118 loc) · 3.83 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
117
118
119
120
{
"name": "cmake-tools-helper",
"displayName": "CMake Tools Helper",
"description": "Enables cpptools to automatically know the information parsed by CMake Tools (e.g. include directories and defines)",
"version": "0.2.1",
"publisher": "maddouri",
"license": "BSD-3-Clause",
"icon": "res/icon.png",
"bugs": {
"url": "https://github.com/maddouri/vscode-cmake-tools-helper/issues"
},
"homepage": "https://github.com/maddouri/vscode-cmake-tools-helper/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/maddouri/vscode-cmake-tools-helper.git"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"keywords": [
"cmake",
"tools",
"helper",
"build",
"c++"
],
"activationEvents": [
"onCommand:cmake.update_cpptools",
"onCommand:cmake.show_active_cmake_config_name",
"onCommand:cmake.install_cmake",
"onCommand:cmake.change_cmake_version",
"workspaceContains:CMakeLists.txt",
"onCommand:cmake.buildWithTarget",
"onCommand:cmake.cleanConfigure",
"onCommand:cmake.configure",
"onCommand:cmake.setBuildType",
"onCommand:cmake.setDefaultTarget"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "cmake.show_active_cmake_config_name",
"title": "Show active CMake config name",
"category": "CMake"
},
{
"command": "cmake.update_cpptools",
"title": "Update cpptools",
"category": "CMake"
},
{
"command": "cmake.install_cmake",
"title": "Install CMake",
"category": "CMake"
},
{
"command": "cmake.change_cmake_version",
"title": "Change CMake version",
"category": "CMake"
}
],
"configuration": {
"type": "object",
"title": "CMake Helper Configuration",
"properties": {
"cmake-tools-helper.cmake_download_path": {
"type": "string",
"default": null,
"description": "The path to a folder in which the CMake archives are downloaded and extracted"
},
"cmake-tools-helper.auto_set_cpptools_target": {
"type": "boolean",
"default": true,
"description": "If 'true', this extension will automatically set the target of cpptools to be the same as the current CMake target."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"extensionDependencies": [
"ms-vscode.cpptools",
"twxs.cmake",
"vector-of-bool.cmake-tools"
],
"dependencies": {
"mkdirp": "^0.5.1",
"@octokit/rest": "^15.2.5",
"request-progress": "^3.0.0",
"request": "^2.85.0",
"decompress": "^4.2.0",
"url-exists": "^1.0.3",
"compare-versions": "^3.1.0"
},
"devDependencies": {
"typescript": "^2.7.2",
"vscode": "^1.1.14",
"mkdirp": "^0.5.1",
"mocha": "^5.0.5",
"@types/node": "^9.6.0",
"@types/mocha": "^5.0.0",
"@octokit/rest": "^15.2.5",
"request-progress": "^3.0.0",
"request": "^2.85.0",
"decompress": "^4.2.0",
"url-exists": "^1.0.3",
"compare-versions": "^3.1.0"
}
}