-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "vscode-tap",
"displayName": "Tap",
"version": "1.0.2",
"publisher": "numaru",
"description": "Test Anything Protocol support",
"author": {
"name": "Kin Numaru"
},
"categories": [
"Languages",
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"activationEvents": [
"onLanguage:tap"
],
"engines": {
"vscode": "^1.17.0"
},
"main": "./out/extension",
"contributes": {
"languages": [{
"id": "tap",
"aliases": ["Test Anything Protocol", "TAP"],
"extensions": [".tap"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "tap",
"scopeName": "source.tap",
"path": "./syntaxes/tap.tmLanguage.json"
}]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/numaru/vscode-tap/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/numaru/vscode-tap.git"
},
"homepage": "https://github.com/numaru/vscode-tap/blob/master/README.md"
}