forked from 418sec/clamscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.12 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
{
"name": "clamscan",
"version": "1.0.6",
"author": "Kyle Farris <kfarris@chomponllc.com> (http://chomponllc.com)",
"description": "Use Node JS to scan files on your server with ClamAV's clamscan/clamdscan binary or via TCP to a remote server or local UNIX Domain socket. This is especially useful for scanning uploaded files provided by un-trusted sources.",
"main": "index.js",
"contributors": [
"dietervds",
"nicolaspeixoto",
"urg <Patrick McAndrew>",
"SaltwaterC <Ștefan Rusu>",
"Sjord <Sjoerd Langkemper>"
],
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git@github.com:kylefarris/clamscan.git"
},
"dependencies": {},
"keywords": [
"clamav",
"virus",
"clamscan",
"upload",
"virus scanning",
"clam",
"clamd",
"security"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/kylefarris/clamscan/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.4.0",
"mocha": "^5.2.0",
"request": "^2.88.0"
}
}