-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.12 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.12 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
{
"name": "openbuildapp",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"test": "node scripts/run-tests.mjs",
"validate:schemas": "node scripts/validate-schemas.mjs",
"bootstrap:example-run": "node scripts/bootstrap-example-run.mjs",
"verify:smoke": "node scripts/smoke-checks.mjs",
"repo:map": "node scripts/print-repo-map.mjs",
"run:closed-loop": "node scripts/run-closed-loop.mjs",
"run:golden-suite": "node scripts/run-golden-suite.mjs",
"run:dynamic-suite": "node scripts/run-dynamic-suite.mjs",
"run:deceptive-suite": "node scripts/run-deceptive-suite.mjs",
"validate:truth": "node scripts/reconstruct-run-truth.mjs",
"validate:invariants": "node scripts/validate-run-invariants.mjs",
"validate:evidence": "node scripts/validate-evidence-pack.mjs",
"validate:events": "node scripts/validate-event-log.mjs",
"validate:graph": "node scripts/validate-graph-integrity.mjs",
"compare:runs": "node scripts/compare-runs.mjs",
"stress:replay": "node scripts/stress-replay.mjs"
}
}