forked from kylefarris/clamscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.71 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
{
"name": "clamscan",
"version": "2.1.2",
"author": "Kyle Farris <kyle.farris@infotechinc.com> (https://infotechinc.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>",
"chris-maclean <Christopher Maclean>",
"ngraef <Nick Graef>",
"caroneater <Gabriel Fournier>"
],
"scripts": {
"docs": "jsdoc2md index.js lib/* > API.md",
"format": "node_modules/.bin/prettier '**/*.{js,json}' --write",
"lint": "node_modules/.bin/eslint '**/*.js'",
"test": "make test"
},
"repository": {
"type": "git",
"url": "git@github.com:kylefarris/clamscan.git"
},
"keywords": [
"clamav",
"virus",
"clamscan",
"upload",
"virus scanning",
"clam",
"clamd",
"security"
],
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/kylefarris/clamscan/issues"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"axios": "^1.2.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.1.0",
"prettier": "^2.8.0"
}
}