-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "vscode-logstash",
"publisher": "vscode-logstash",
"displayName": "Logstash Snippets",
"description": "Logstash snippets",
"icon": "images/logstash.svg",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/Gillespie59/vscode-logstash.git"
},
"version": "1.0.1",
"engines": {
"vscode": "^0.10.x"
},
"categories": [
"Snippets"
],
"contributes": {
"languages": [{
"id": "logstash",
"aliases": ["Logstash", "logstash"],
"extensions": [".logstash.conf"]
}],
"snippets": [
{
"language": "logstash",
"path": "./snippets/logstash-inputs.json"
},
{
"language": "logstash",
"path": "./snippets/logstash-outputs.json"
},
{
"language": "logstash",
"path": "./snippets/logstash-filters.json"
}
]
}
}