-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 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
57
58
59
60
61
{
"name": "@mathiscode/codebase-scanner",
"version": "2.1.0",
"description": "Scan a codebase for malware signatures",
"license": "MIT",
"author": {
"name": "Jay Mathis",
"email": "code@mathis.network",
"url": "https://jaymath.is"
},
"homepage": "https://github.com/mathiscode/codebase-scanner",
"repository": {
"type": "git",
"url": "https://github.com/mathiscode/codebase-scanner.git"
},
"bugs": {
"url": "https://github.com/mathiscode/codebase-scanner/issues"
},
"main": "index.mjs",
"type": "module",
"bin": {
"codebase-scanner": "./index.mjs"
},
"keywords": [
"malware",
"obfuscated",
"javascript",
"repository",
"scanner",
"virus",
"scan",
"spyware",
"malicious",
"scam",
"breach",
"theft",
"hacking",
"phishing"
],
"scripts": {
"start": "node index.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"deploy:npm": "npm publish",
"deploy:docker": "docker build -t mathiscode/codebase-scanner:latest . && docker push mathiscode/codebase-scanner:latest",
"deploy:docker:scan-npm": "npm run build:scan:npm:docker && docker push mathiscode/codebase-scanner-scan-npm-registry:latest",
"scan:npm": "node utils/scan-npm-registry.mjs",
"scan:npm:docker": "docker run --rm -v \"$(pwd)/codebase-scanner-npm-registry-results:/tmp/codebase-scanner-npm-registry-results\" mathiscode/codebase-scanner-scan-npm-registry",
"build:scan:npm:docker": "docker build -t mathiscode/codebase-scanner-scan-npm-registry -f Dockerfile.scan-npm-registry .",
"generate:pages:npm": "node utils/generate-pages-npm.mjs"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"all-the-package-names": "^2.0.2147",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"jest": "^29.7.0",
"tar": "^7.4.3"
}
}