-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.25 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@goodciso/aware",
"version": "2.11.1",
"description": "AWARE - Autonomous Compliance Infrastructure for AI Agents",
"repository": {
"type": "git",
"url": "git+https://github.com/GoodCISO/aware.git"
},
"homepage": "https://github.com/GoodCISO/aware#readme",
"bugs": {
"url": "https://github.com/GoodCISO/aware/issues"
},
"files": [
"src/agents/",
"src/api/",
"src/audit/",
"src/budget/",
"src/compliance/",
"src/config/",
"src/coordinator/",
"src/data/users.json.template",
"src/data/agents.json.template",
"src/db/",
"src/election/",
"src/emergency/",
"src/engine-secret.js",
"src/gateway/",
"src/index.js",
"src/kill-switch/",
"src/monitoring/",
"src/node-discovery/",
"src/policies/",
"src/routing/",
"src/server.js",
"src/trainer/",
"src/training/",
"src/ui/src/",
"src/ui/public/",
"src/v2/",
"scripts/seed-dev-users.js",
"scripts/seed-dev-agents.js",
"docs/",
"LICENSE",
"README.md",
"CHANGELOG.md",
"package.json"
],
"main": "src/index.js",
"scripts": {
"start": "node src/api/index.js",
"dev": "nodemon src/index.js",
"seed:dev:users": "node scripts/seed-dev-users.js",
"seed:dev:agents": "node scripts/seed-dev-agents.js",
"seed:dev": "npm run seed:dev:users && npm run seed:dev:agents",
"seed:dev:clean": "rm -f src/data/users.json src/data/agents.json",
"test": "node --test 'test/unit/**/*.test.js'",
"test:ast10-standards": "node --test 'test/standards/owasp-ast10/*.test.js'",
"test:apts-standards": "node --test 'test/standards/owasp-apts/*.test.js'",
"test:donkai": "node --test 'test/standards/owasp-donkai/*.test.js'",
"test:llm-top-10-standards": "node --test 'test/standards/owasp-donkai/*.test.js' 'test/integration/replay-llm-top-10.test.js'",
"test:integration": "node --test 'test/integration/**/*.test.js'",
"test:all": "node --test 'test/unit/**/*.test.js' 'test/integration/**/*.test.js'",
"test:jest": "jest",
"test:watch": "node --test --watch 'test/unit/**/*.test.js'",
"lint": "eslint src/",
"ui-dev": "cd src/ui && npm start",
"ui-build": "cd src/ui && npm run build",
"ui-install": "cd src/ui && npm install",
"config:show": "node -e \"const c = require('./src/config/index.cjs'); console.log(JSON.stringify(c.snapshot(), null, 2))\"",
"config:validate": "node -e \"const c = require('./src/config/index.cjs'); try { c.validate(); console.log('OK'); } catch (e) { console.error('FAIL:', e.message); process.exit(1); }\""
},
"keywords": [
"cluster",
"distributed-systems",
"orchestration",
"self-organizing",
"ant-colony",
"automated-resource-engine"
],
"author": "Alvin Chang",
"license": "Apache-2.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^7.0.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"modal": "^0.8.0",
"pg": "^8.21.0",
"uuid": "^11.1.1"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"c8": "^10.1.3",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"nodemon": "^3.0.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=22.0.0"
}
}