-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "lcov-lang",
"displayName": "LCOV.info language support",
"description": "Syntax highlighting for LCOV.info text files",
"version": "1.0.1",
"icon": "images/lcovlang.gif",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Programming languages",
"LCOV"
],
"publisher": "SergeLamikhov",
"license": "See license in LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/vscode-plugins/LCOV-lang.git"
},
"bugs": {
"url": "https://github.com/vscode-plugins/LCOV-lang/issues"
},
"contributes": {
"languages": [{
"id": "lcov",
"aliases": ["LCOV", "lcov"],
"extensions": ["lcov.info"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "lcov",
"scopeName": "source.lcov",
"path": "./syntaxes/lcov.tmLanguage.json"
}]
}
}