forked from kylefarris/clamscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.96 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
61
{
"name": "clamscan",
"version": "2.4.0",
"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'",
"lint:fix": "node_modules/.bin/eslint --fix '**/*.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": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/kylefarris/clamscan/issues"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"axios": "^1.2.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.1.3",
"jsdoc-to-markdown": "^9.0.4",
"mocha": "^10.1.0",
"prettier": "^3.2.5"
}
}