-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.2 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
{
"name": "testpilot-monorepo",
"version": "0.1.0",
"private": true,
"description": "TestPilot AI-native product for unit test generation with explanation and quality gates",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"bootstrap": "npm install",
"dev:cli": "node apps/cli/src/index.js",
"dev:ext": "node apps/extension-vscode/src/extension.js",
"check:prompt": "node scripts/m7-onboarding-validate.js configs/testpilot.config.team-core.json",
"check:readiness": "node scripts/m8-risk-scoring.js",
"ops:dispatch": "node scripts/dispatch.js",
"ops:summary": "node scripts/summary.js",
"ops:handoff": "node scripts/handoff.js",
"m7:onboarding": "node scripts/m7-onboarding-validate.js configs/testpilot.config.team-core.json",
"m7:pr-workflow": "node scripts/pr-workflow.js",
"m11:control-center": "node scripts/export-m11-control-center.js",
"m13:policy-enforcement": "node scripts/m13-lane1-validate-policy-enforcement.js",
"m14:release-confidence-ci": "node scripts/m14-release-confidence-ci.js",
"m15:sso-rbac-tenant": "node scripts/m15-lane1-validate-sso-rbac-tenant.js",
"m15:secrets-retention": "node scripts/m15-lane2-validate-secrets-retention.js",
"m16:billing-governance": "node scripts/m16-lane2-validate-billing-governance.js",
"gate:high-risk": "node scripts/gate-high-risk.js",
"regression:run": "node scripts/regression-suite.js",
"regression:update-baseline": "node scripts/regression-suite.js --update-baseline",
"check:ci": "npm run check:prompt && npm run check:readiness && node scripts/gate-high-risk.js --allow-high-modules 2 --allow-high-functions 1",
"check:release": "npm run check:prompt && npm run check:readiness && npm run gate:high-risk",
"tp:analyze": "node scripts/tp-analyze.js",
"tp:golden": "npm run -s tp:analyze -- --scenario pass",
"test:unit": "node scripts/tests/contract-and-gates.test.js",
"h3:export-evidence": "node scripts/h3-export-evidence.js",
"h3:audit:tail": "node scripts/h3-audit-log.js tail --n 50",
"h3:exec-report": "node scripts/h3-executive-report.js",
"vscode:runner": "node scripts/vscode-runner.js"
},
"engines": {
"node": ">=20"
}
}