-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.92 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "genai-security-crosswalk",
"version": "4.0.0",
"description": "OWASP GenAI Crosswalk — mapping LLM Top 10 2026, Agentic Top 10 2026, and DSGAI 2026 to 25 industry frameworks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"data/entries/",
"data/frameworks/",
"data/stats.json",
"data/incidents.json",
"data/schema.json",
"data/framework-schema.json",
"data/incidents-schema.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"generate": "node scripts/generate.js",
"validate": "node scripts/validate.js",
"stats": "node scripts/stats.js && node scripts/render-stats.mjs",
"stats:check": "node scripts/stats.js --check && node scripts/render-stats.mjs --check",
"registry-coverage": "node scripts/coverage-of-registry.js",
"density": "node scripts/density-report.js",
"inventory": "node scripts/inventory-completeness.js",
"export:olir": "node scripts/export-olir.mjs",
"audit:incidents": "node scripts/audit-incidents.mjs",
"validate:aivss": "node scripts/validate-aivss.mjs",
"freshness": "node scripts/freshness-report.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",
"build": "npm run generate && npm run validate && npm run stats:check",
"build:reports": "npm run compliance && npm run incidents && npm run registry-coverage && npm run density && npm run inventory && npm run audit:incidents && npm run validate:aivss && npm run freshness",
"ci": "npm run build && npm run test:scripts && npm run build:reports",
"compile": "tsc",
"prepublishOnly": "npm run compile",
"test:scripts": "node --test scripts/*.test.mjs",
"test": "node --test scripts/*.test.mjs"
},
"license": "CC-BY-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/GenAI-Security-Project/GenAI-Data-Security-Initiative.git"
},
"bugs": {
"url": "https://github.com/GenAI-Security-Project/GenAI-Data-Security-Initiative/issues"
},
"homepage": "https://github.com/GenAI-Security-Project/GenAI-Data-Security-Initiative#readme",
"keywords": [
"owasp",
"llm-security",
"ai-security",
"genai",
"crosswalk",
"compliance",
"nist",
"eu-ai-act",
"prompt-injection",
"agentic-ai"
],
"author": {
"name": "OWASP GenAI Data Security Initiative",
"url": "https://genai.owasp.org"
},
"contributors": [
"OWASP GenAI Data Security Initiative contributors"
],
"devDependencies": {
"@types/node": "^25.5.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"typescript": "^5.4.0"
}
}