-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "virustotal-prometheus",
"version": "0.3.0",
"description": "Monitor VirusTotal reports and expose Prometheus metrics",
"repository": "[email protected]:w3f/report-scanner.git",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"test": "mocha --timeout 60000 --require ts-node/register --exit test/*.ts test/**/*.ts",
"e2e-test": "mocha --timeout 300000 --require ts-node/register --exit e2e-test/**/*.ts",
"start": "node ./dist/index.js start"
},
"dependencies": {
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.3",
"cloudflare": "^2.9.1",
"commander": "^4.0.0",
"express": "^4.18.1",
"got": "^11",
"node-virustotal": "^3.35.0",
"prom-client": "^14.0.1"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/node": "14.18.30",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"eslint": "8.24.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}