-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "snort",
"displayName": "Snort",
"description": "Syntax highlighting for Snort rules",
"homepage": "https://github.com/infosec-intern/textmate-snort/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/logo.png",
"publisher": "infosec-intern",
"version": "1.1.5",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"snort",
"ids",
"pattern",
"security"
],
"galleryBanner": {
"color": "#B00029",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/infosec-intern/textmate-snort"
},
"bugs": {
"url": "https://github.com/infosec-intern/textmate-snort/issues"
},
"contributes": {
"languages": [
{
"id": "snort",
"aliases": [
"Snort",
"snort"
],
"extensions": [
".rules",
".snort"
],
"configuration": "snort.configuration.json"
}
],
"grammars": [
{
"language": "snort",
"scopeName": "source.snort",
"path": "syntaxes/snort.tmLanguage"
}
]
}
}