-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 KB
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
{
"name": "@jayhackpro/jayshield",
"version": "1.3.1",
"description": "Find and remove web malware, webshells, and backdoors. A fast, dependency-free malware scanner and quarantine tool by JayHackPro.",
"keywords": [
"malware",
"malware-scanner",
"antivirus",
"webshell",
"backdoor",
"security",
"infosec",
"incident-response",
"php-security",
"wordpress-security",
"web-security",
"quarantine",
"cli"
],
"homepage": "https://github.com/JayHackPro/JayShield#readme",
"bugs": {
"url": "https://github.com/JayHackPro/JayShield/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JayHackPro/JayShield.git"
},
"license": "MIT",
"author": "Jayden Yoon ZK (JayHackPro Inc.)",
"type": "module",
"bin": {
"jayshield": "bin/jayshield.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test test/*.test.mjs",
"start": "node bin/jayshield.js",
"selftest": "node bin/jayshield.js --selftest"
},
"dependencies": {}
}