-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.38 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
62
63
64
65
66
67
68
{
"name": "muaddib-scanner",
"version": "2.12.0",
"description": "Supply-chain threat detection & response for npm & PyPI/Python",
"main": "src/index.js",
"bin": {
"muaddib": "bin/muaddib.js"
},
"scripts": {
"test": "node tests/run-tests.js",
"test:integration": "node tests/run-tests-integration.js",
"test:regression-check": "node scripts/regression-check.js",
"fp-clusters": "node scripts/analyze-fp-clusters.js",
"scan": "node bin/muaddib.js scan .",
"update": "node bin/muaddib.js update",
"lint": "eslint src bin --ext .js",
"ci:local": "node scripts/check-deps-typosquats.js && node scripts/check-no-tracked-node-modules.js && npm audit --audit-level=high && npm run docs:stats:check && npm test",
"docs:stats": "node scripts/collect-stats.js && node scripts/sync-stats.js",
"docs:stats:tests": "node scripts/collect-stats.js --with-tests && node scripts/sync-stats.js",
"docs:stats:check": "node scripts/collect-stats.js --check && node scripts/sync-stats.js --check",
"version": "npm run docs:stats && git diff --name-only | xargs -r git add",
"compress-iocs": "node -e \"const fs=require('fs');const zlib=require('zlib');zlib.gzip(fs.readFileSync('src/ioc/data/iocs.json'),(e,b)=>{if(e)throw e;fs.writeFileSync('iocs.json.gz',b);console.log('Compressed: '+b.length+' bytes')})\"",
"prepublishOnly": "node -e \"if(!process.env.CI){console.error('ERR: Publish via CI workflow (tag v* push). Local publishes are disabled.');process.exit(1)}\""
},
"keywords": [
"security",
"npm",
"pypi",
"python",
"supply-chain",
"malware",
"scanner",
"typosquatting",
"shai-hulud",
"detection",
"ast",
"sarif",
"sandbox",
"threat-intelligence"
],
"author": "DNSZLSK",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/DNSZLSK/muad-dib.git"
},
"homepage": "https://github.com/DNSZLSK/muad-dib",
"bugs": {
"url": "https://github.com/DNSZLSK/muad-dib/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "8.6.0",
"acorn": "8.18.0",
"acorn-walk": "8.3.5",
"adm-zip": "0.6.0",
"js-yaml": "5.3.0",
"web-tree-sitter": "^0.26.9"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.9.0",
"eslint-plugin-security": "^4.0.0",
"globals": "17.11.0"
}
}