-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "lux-colorizer",
"version": "1.0.0",
"publisher": "andreygrechin",
"engines": {
"vscode": "^1.53.0"
},
"license": "SEE LICENSE IN LICENSE",
"displayName": "Lux Colorizer",
"description": "Language extension to colorize Lux (LUcid eXpect scripting) test automation framework script syntax.",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"lux",
"nso",
"colorizer",
"syntax",
"highlight"
],
"preview": false,
"contributes": {
"languages": [
{
"id": "lux",
"aliases": [
"Lux (LUcid eXpect scripting)",
"lux"
],
"extensions": [
"lux",
"luxinc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lux",
"scopeName": "source.lux",
"path": "./syntaxes/lux.tmLanguage.json"
}
],
"snippets": [
{
"language": "lux",
"path": "./snippets/snippets.json"
}
]
},
"qna": "https://github.com/andreygrechin/lux-colorizer/issues",
"icon": "assets/images/icon256x256.png",
"bugs": {
"url": "https://github.com/andreygrechin/lux-colorizer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/andreygrechin/lux-colorizer.git"
},
"homepage": "https://github.com/andreygrechin/lux-colorizer/"
}