-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "smash-language-vscode",
"displayName": "Smashtest language support",
"description": "Syntax highlighting for Smashtest",
"keywords": [
"smashtest", "testing", "test", "QA", "smash"
],
"version": "0.1.13",
"engines": {
"vscode": "*"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "smash",
"aliases": [
"Smashtest",
"smash"
],
"extensions": [
".smash"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "smash",
"scopeName": "source.smash",
"path": "./syntaxes/smash.tmLanguage.json"
}
]
},
"repository": {
"url": "https://github.com/smashtestio/smash-language-vscode"
},
"publisher": "Smashtest",
"icon": "logo.png"
}