-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.64 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
69
70
{
"name": "ai-security-audit-pro",
"version": "0.8.5",
"description": "Universal security-audit plugin and CLI engine for AI agents with OWASP-mapped reports.",
"type": "module",
"bin": {
"security-audit-pro": "scripts/security-audit.mjs"
},
"scripts": {
"check": "node --check scripts/security-audit.mjs && node --check scripts/security-audit-selftest.mjs",
"smoke": "node scripts/security-audit.mjs --help",
"selftest": "node scripts/security-audit-selftest.mjs",
"test": "npm run check && npm run smoke && npm run selftest"
},
"files": [
".codex-plugin/",
".claude-plugin/",
"agent-adapters/",
"assets/",
"docs/",
"examples/",
"scripts/",
"skills/",
"templates/",
".mcp.json",
"openclaw.plugin.json",
"AGENTS.md",
"CLAUDE.md",
"GEMINI.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md",
"SECURITY.md",
"LICENSE"
],
"keywords": [
"security",
"security-audit",
"owasp",
"sast",
"dast",
"web-security",
"agent-plugin",
"ai-plugin",
"security-plugin",
"ai-agents",
"codex",
"claude-code",
"gemini-cli",
"openclaw",
"clawhub"
],
"author": "Security Audit Pro maintainers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xsourabhsharma/ai-security-audit-pro.git"
},
"homepage": "https://github.com/xsourabhsharma/ai-security-audit-pro#readme",
"bugs": {
"url": "https://github.com/xsourabhsharma/ai-security-audit-pro/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}