-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.35 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
{
"repository": {
"type": "git",
"url": "https://github.com/GDATASoftwareAG/vaas"
},
"name": "gdata-vaas",
"version": "0.0.22",
"license": "MIT",
"main": "lib/Index.js",
"types": "lib/Index.d.ts",
"sideEffects": false,
"keywords": [
"security",
"malware",
"malware-analysis",
"it-security",
"malware-detection"
],
"description": "An SDK to for G DATA VaaS. Verdicts as a service.",
"author": {
"name": "G DATA CyberDefense AG",
"email": "[email protected]",
"url": "https://www.gdata.de"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "22.10.1",
"@types/random-bytes": "1.0.3",
"dotenv": "16.4.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"random-bytes": "1.0.0",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@d-fischer/isomorphic-ws": "^7.0.2",
"@types/uuid": "10.0.0",
"@types/ws": "8.5.13",
"@ungap/url-search-params": "0.2.2",
"axios": "1.7.8",
"fast-sha256": "1.3.0",
"typescript-json-serializer": "6.0.1",
"uuid": "11.0.3",
"ws": "8.18.0"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc --watch",
"test": "jest --ci --runInBand --detectOpenHandles --forceExit",
"format": "prettier --write src/** tests/**"
}
}