-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.96 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
{
"name": "genai-security-crosswalk",
"version": "3.1.0",
"description": "OWASP GenAI Security Crosswalk — mapping LLM Top 10, Agentic Top 10, and DSGAI 2026 to 25 industry frameworks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"data/entries/",
"data/incidents.json",
"data/schema.json",
"data/incidents-schema.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"generate": "node scripts/generate.js",
"validate": "node scripts/validate.js",
"compliance": "node scripts/compliance-report.js",
"incidents": "node scripts/incidents-report.js",
"query": "node scripts/query.js",
"watch": "node scripts/watch.js",
"ingest": "node scripts/ingest-framework.mjs",
"extract-registry": "node scripts/extract-registry.js",
"framework-diff": "node scripts/framework-diff.js",
"state-report": "node scripts/state-report.js",
"audit-join": "node scripts/audit-control-join.mjs",
"build": "npm run generate && npm run validate",
"build:reports": "npm run compliance && npm run incidents",
"ci": "npm run build && npm run build:reports",
"compile": "tsc",
"prepublishOnly": "npm run compile"
},
"license": "CC-BY-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/emmanuelgjr/GenAI-Security-Crosswalk.git"
},
"bugs": {
"url": "https://github.com/emmanuelgjr/GenAI-Security-Crosswalk/issues"
},
"homepage": "https://github.com/emmanuelgjr/GenAI-Security-Crosswalk#readme",
"keywords": [
"owasp",
"llm-security",
"ai-security",
"genai",
"crosswalk",
"compliance",
"nist",
"eu-ai-act",
"prompt-injection",
"agentic-ai"
],
"author": {
"name": "Emmanuel Guilherme Junior",
"url": "https://github.com/emmanuelgjr"
},
"contributors": [
"OWASP GenAI Data Security Initiative contributors"
],
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.4.0"
}
}