forked from benzino77/clamav-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 896 Bytes
/
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
{
"name": "clamav-rest-api",
"version": "1.2.1",
"description": "ClamAV REST API. Scan files using simple POST request.",
"main": "src/app.js",
"engines": {
"node": ">=18.0.0 <19"
},
"scripts": {
"startdev": "nodemon src/app.js",
"start": "node src/app.js",
"test": "jest --detectOpenHandles"
},
"keywords": [
"clamav",
"API",
"REST",
"virus scan",
"k8s",
"docker"
],
"author": "Piotr Antczak",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"clamscan": "^2.1.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "1.4.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"axios": "^1.3.4",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.3",
"request": "^2.88.2",
"supertest": "^4.0.2"
}
}