22 lines
614 B
JSON
22 lines
614 B
JSON
{
|
|
"name": "aegis-labyrinth-automation",
|
|
"version": "1.0.0",
|
|
"description": "Automatisierte Test- und Audit-Suite für Aegis Labyrinth",
|
|
"license": "GPL-3.0-only",
|
|
"type": "module",
|
|
"scripts": {
|
|
"audit": "node tests/audit.mjs",
|
|
"selfplay": "node tests/selfplay.mjs",
|
|
"perf": "node tests/perf-test.mjs",
|
|
"report": "node tests/report.mjs",
|
|
"test": "node tests/audit.mjs && node tests/selfplay.mjs && node tests/perf-test.mjs",
|
|
"setup": "npx playwright install chromium"
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.62.1"
|
|
},
|
|
"devDependencies": {
|
|
"js-yaml": "^4.1.0"
|
|
}
|
|
}
|