-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
21 lines (21 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
{
"name": "polysec",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "PolySec — a security lens over the Polygraph toolset (design-time fully-mediated gates). Reuses the sibling ../polygraph engines; no API key.",
"scripts": {
"polysec:harden": "node scripts/polysec-harden.mjs",
"polysec:diagnose": "node scripts/polysec-diagnose.mjs",
"polysec:recover": "node scripts/polysec-recover.mjs",
"polysec:guard": "node scripts/polysec-guard.mjs",
"polysec:sandbox": "node examples/polysec-sandbox/run.mjs",
"polysec:auth": "node scripts/polysec-harden.mjs --module examples/polysec-auth/next.cjs --contract examples/polysec-auth/contract.json --security examples/polysec-auth/security.json --label auth --out examples/polysec-auth/out",
"polysec:secret": "node scripts/polysec-harden.mjs --module examples/polysec-secret/next.cjs --contract examples/polysec-secret/contract.json --security examples/polysec-secret/security.json --label secret --out examples/polysec-secret/out",
"polysec:broker": "node scripts/polysec-harden.mjs --module examples/polysec-broker/next.cjs --contract examples/polysec-broker/contract.json --security examples/polysec-broker/security.json --label broker --out examples/polysec-broker/out",
"polysec:fleet": "node examples/polysec-fleet/run.mjs",
"polysec:traces": "node examples/polysec-sandbox/gen-traces.mjs",
"test": "node --no-warnings --test test/polysec.test.mjs test/polysec-auth.test.mjs test/polysec-secret.test.mjs test/polysec-broker.test.mjs test/polysec-fleet.test.mjs test/polysec-recover.test.mjs test/polysec-diagnose.test.mjs"
},
"license": "Apache-2.0"
}