-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
107 lines (106 loc) · 2.22 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
{
"name": "cmake",
"version": "0.0.17",
"publisher": "twxs",
"displayName": "CMake",
"description": "CMake language support for Visual Studio Code",
"author": {
"name": "Nicolas Martin"
},
"repository": {
"type": "git",
"url": "https://github.com/twxs/vs.language.cmake.git"
},
"bugs": {
"url": "https://github.com/twxs/vs.language.cmake/issues"
},
"homepage": "https://github.com/twxs/vs.language.cmake/blob/master/README.md",
"keywords": [
"CMake",
"Syntax"
],
"categories": [
"Languages", "Snippets", "Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"license": "MIT",
"activationEvents": [
"onLanguage:cmake"
],
"engines": {
"vscode": "^1.10.0"
},
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "cmake",
"extensions": [
".cmake"
],
"filenames": [
"CMakelists.txt"
],
"aliases": [
"CMake"
]
},
{
"id": "cmake-cache",
"filenames": [
"CMakeCache.txt"
],
"aliases": [
"CMake Cache"
]
}
],
"commands": [
{
"command": "cmake.onlineHelp",
"title": "CMake: Online Help"
}
],
"grammars": [
{
"language": "cmake",
"scopeName": "source.cmake",
"path": "./syntaxes/CMake.tmLanguage"
},
{
"language": "cmake-cache",
"scopeName": "source.cmakecache",
"path": "./syntaxes/CMakeCache.tmLanguage"
}
],
"configuration": {
"title": "CMake configuration",
"properties": {
"cmake.cmakePath": {
"type": "string",
"default": "cmake",
"description": "The path to CMake generator executable"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"opener": "^1.4.2"
},
"devDependencies": {
"typescript": "^2.0.9",
"vscode": "^1.0.3",
"@types/node": "^6.0.47",
"mocha": "^3.1.2",
"@types/mocha": "^2.2.33"
}
}