-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 2.26 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
{
"name": "loop-engineering",
"private": true,
"type": "module",
"scripts": {
"validate:registry": "node scripts/validate-registry.mjs",
"check:loop-init": "node scripts/check-loop-init-sync.mjs",
"test:loop-audit": "cd tools/loop-audit && npm test",
"test:loop-init": "cd tools/loop-init && npm test",
"test:loop-cost": "cd tools/loop-cost && npm test",
"test:loop-sync": "cd tools/loop-sync && npm test",
"test:loop-context": "cd tools/loop-context && npm test",
"test:loop-gate": "cd tools/loop-gate && npm test",
"test:mcp-server": "cd tools/mcp-server && npm test",
"test:loop-worktree": "cd tools/loop-worktree && npm test",
"test:loop-sandbox": "cd tools/loop-sandbox && npm test",
"test:loop-swarm": "cd tools/loop-swarm && npm test",
"test:loop": "cd tools/loop && npm test",
"test:loop-metrics": "cd tools/loop-metrics && npm test",
"test:goal-init": "cd tools/goal-init && npm test",
"test:readiness-core": "cd tools/readiness-core && npm test",
"test:goal-audit": "cd tools/goal-audit && npm test",
"test:tools": "npm run test:readiness-core && npm run test:loop-audit && npm run test:loop-init && npm run test:loop-cost && npm run test:loop-sync && npm run test:loop-context && npm run test:loop-gate && npm run test:mcp-server && npm run test:loop-worktree && npm run test:loop-sandbox && npm run test:loop-swarm && npm run test:loop && npm run test:loop-metrics && npm run test:goal-audit && npm run test:goal-init",
"build:tools": "cd tools/readiness-core && npm run build && cd ../loop-audit && npm run build && cd ../loop-init && npm run build && cd ../loop-cost && npm run build && cd ../loop-sync && npm run build && cd ../loop-context && npm run build && cd ../loop-gate && npm run build && cd ../mcp-server && npm run build && cd ../loop-worktree && npm run build && cd ../loop-sandbox && npm run build && cd ../loop-swarm && npm run build && cd ../loop && npm run build && cd ../loop-metrics && npm run build && cd ../goal-audit && npm run build && cd ../goal-init && npm run build",
"contributors:generate": "node scripts/generate-contributors.mjs",
"contributors:check": "node scripts/generate-contributors.mjs --check"
},
"devDependencies": {
"ajv": "^8.17.1",
"yaml": "^2.8.0"
}
}