forked from kylefarris/clamscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.66 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
{
"name": "clamscan",
"version": "2.1.2",
"author": "Kyle Farris <[email protected]> (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"
],
"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": "[email protected]: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": {
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^33.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^9.2.2",
"prettier": "^2.2.1"
}
}