-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 2 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
{
"name": "bats",
"displayName": "Bats (Bash Automated Testing System)",
"description": "Bats (Bash Automated Testing System) language support for VSCode.",
"version": "0.1.10",
"publisher": "jetmartin",
"author": {
"name": "J-Et. Martin",
"email": "code@jet-martin.com",
"url": "http://www.jet-martin.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bats-core/bats-vscode.git"
},
"bugs": {
"url": "https://github.com/bats-core/bats-vscode/issues"
},
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"icon": "images/icon.png",
"contributes": {
"languages": [
{
"id": "bats",
"aliases": [
"Bats (Bash Automated Testing System)",
"Bats",
"BATS",
"bats"
],
"extensions": [
".bats"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "bats",
"scopeName": "source.shell.bats",
"path": "./syntaxes/bats.tmLanguage"
},
{
"scopeName": "source.shell.bats.extended",
"path": "./syntaxes/bats.extended.tmLanguage",
"injectTo": [ "source.shell.bats" ]
},
{
"scopeName": "source.shell.bats.variables",
"path": "./syntaxes/bats.variables.tmLanguage",
"injectTo": [ "source.shell.bats" ]
}
],
"snippets": [
{
"language": "bats",
"path": "./snippets/bats.json"
},
{
"language": "bats",
"path": "./snippets/bats-assert.json"
}
]
}
}