-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "suricata-ls",
"displayName": "Suricata IntelliSense",
"description": "VSCode interface to the Suricata Language Server by Stamus Networks",
"icon": "images/sn-logo.png",
"author": "Stamus Networks",
"license": "MIT",
"version": "0.2.0",
"publisher": "StamusNetworks",
"repository": {
"type": "git",
"url": "https://github.com/StamusNetworks/suricata-ls-vscode"
},
"bugs": {
"url": "https://github.com/StamusNetworks/suricata-ls-vscode/issues"
},
"keywords": [
"suricata",
"ids",
"security",
"intellisense",
"autocompletion",
"ide"
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:suricata"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "suricata",
"aliases": [
"Suricata",
"suricata"
],
"extensions": [
".rules",
".suricata"
],
"configuration": "suricata.configuration.json"
}
],
"configuration": {
"type": "object",
"title": "Suricata Signatures IntelliSense",
"properties": {
"suricata-ls.serverPath": {
"scope": "resource",
"type": "string",
"default": "suricata-language-server",
"description": "Path to the Suricata Language Server (suricata-language-server)."
},
"suricata-ls.suricataPath": {
"scope": "resource",
"type": "string",
"default": "suricata",
"description": "Path to the Suricata binary (suricata)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch",
"fmt": "prettier --write \"src/**/*.ts\"&& npm run test -- --fix",
"test": "eslint ./src --ext ts && tsc --noEmit",
"compile": "tsc -b"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"esbuild": "^0.14.9",
"eslint": "^7.26.0",
"mocha": "^8.3.2",
"typescript": "^4.4.3"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
}
}