forked from lucperkins/vrl-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
72
73
74
75
76
{
"name": "vrl-vscode",
"displayName": "Vector Remap Language",
"description": "Vector Remap Language (VRL) support for VS Code",
"author": {
"name": "Luc Perkins"
},
"publisher": "lucperkins",
"license": "MPL-2.0",
"version": "0.1.5",
"engines": {
"vscode": "^1.60.0"
},
"main": "./syntaxes/vrl.tmLanguage.json",
"repository": "https://github.com/lucperkins/vrl-vscode",
"homepage": "https://marketplace.visualstudio.com/items?itemName=lucperkins.vrl-vscode",
"bugs": {
"url": "https://github.com/lucperkins/vrl-vscode/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"vector",
"vrl",
"vector remap language",
"remap",
"remapping",
"transforms",
"observability"
],
"activationEvents": [
"workspaceContains::**/*.vrl"
],
"scripts": {
"generate": "yarn generate-snippets && yarn generate-tmLanguage",
"generate-snippets": "ejs --data-file ./data/functions.json --output-file ./snippets/vrl.json ./templates/snippets.ejs.json",
"generate-tmLanguage": "ejs --data-file ./data/functions.json --output-file ./syntaxes/vrl.tmLanguage.json ./templates/vrl.tmLanguage.ejs.json",
"package": "vsce package",
"publish": "vsce publish --yarn",
"test": "vscode-tmgrammar-test --scope source.vrl --grammar ./syntaxes/vrl.tmLanguage.json --testcases \"test/**/*.vrl\""
},
"contributes": {
"languages": [
{
"id": "vrl",
"aliases": [
"Vector Remap Language",
"VRL"
],
"extensions": [
".vrl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vrl",
"scopeName": "source.vrl",
"path": "./syntaxes/vrl.tmLanguage.json"
}
],
"snippets": [
{
"language": "vrl",
"path": "./snippets/vrl.json"
}
]
},
"devDependencies": {
"ejs": "3.1.7",
"vsce": "^2.9.1",
"vscode-tmgrammar-test": "^0.0.11"
}
}