-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 5.25 KB
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 5.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "github-delivery",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test tests/unit/review-policy.test.mjs tests/unit/required-checks-policy.test.mjs tests/unit/gate-fixtures.test.mjs tests/unit/snapshot-schema.test.mjs tests/unit/snapshot-consumers.test.mjs tests/unit/snapshot-capture-payload.test.mjs tests/unit/snapshot-cli.test.mjs tests/unit/ship-gate-policy.test.mjs tests/unit/ship-gate-cli.test.mjs tests/unit/feedback-resolution.test.mjs tests/unit/addressed-feedback-comment.test.mjs tests/unit/ship-gate-docs.test.mjs tests/unit/base-health-policy.test.mjs tests/unit/base-health-live.test.mjs tests/unit/base-health-docs.test.mjs tests/unit/mutation-policy.test.mjs tests/unit/mutation-policy-cli.test.mjs tests/unit/review-thread-mutation.test.mjs tests/unit/mutation-modes-docs.test.mjs tests/unit/github-mutation-broker.test.mjs tests/unit/merge-branch-cleanup.test.mjs tests/unit/natural-language-merge.test.mjs tests/unit/runtime-capabilities.test.mjs tests/unit/runtime-capabilities-cli.test.mjs tests/unit/skill-router.test.mjs tests/unit/eval-contracts.test.mjs tests/unit/distribution.test.mjs tests/unit/installer.test.mjs tests/unit/release-contract.test.mjs tests/unit/release-workflow.test.mjs tests/unit/workflow-security.test.mjs tests/unit/dependency-review-fallback.test.mjs tests/unit/live-github-fixture.test.mjs tests/unit/live-fixture-cleanup.test.mjs tests/unit/live-fixture-credential.test.mjs tests/unit/live-fixture-gate-result.test.mjs tests/unit/actions-snapshot-repair.test.mjs tests/unit/review-scope.test.mjs tests/unit/final-roadmap-acceptance.test.mjs tests/unit/bare-github-mentions.test.mjs tests/unit/simplify-review-contract.test.mjs tests/unit/workflow-mode.test.mjs tests/unit/verdict-publication.test.mjs tests/unit/fix-pr-bots-contract.test.mjs tests/unit/proactive-contract-verification.test.mjs",
"evals:offline": "node scripts/validate-evals.mjs",
"build:dist": "node scripts/build-dist.mjs",
"dist:check": "node scripts/build-dist.mjs --verify-reproducible",
"check": "node --check scripts/live-github-fixture.mjs && node --check scripts/actions-ship-gate-snapshot.mjs && node --check scripts/verify-live-fixture-token.mjs && node --check scripts/cleanup-live-github-fixture.mjs && node --check scripts/lib/live-github-fixture.mjs && node --check scripts/lib/live-fixture-checks.mjs && node --check scripts/lib/live-fixture-cleanup.mjs && node --check scripts/lib/live-fixture-credential.mjs && node --check scripts/lib/live-fixture-gate-result.mjs && node --check scripts/lib/actions-snapshot-repair.mjs && node --check scripts/review-scope.mjs && node --check scripts/security-scope.mjs && node --check scripts/bug-scope.mjs && node --check scripts/pre-open-gate.mjs && node --check scripts/lib/review-scope.mjs && node --check scripts/lib/review-scope-compat.mjs && node --check scripts/review-threads.mjs && node --check scripts/pr-policy-gate.mjs && node --check scripts/required-checks.mjs && node --check scripts/codeowners-for-pr.mjs && node --check scripts/watch-wake-gate.mjs && node --check scripts/ship-gate-snapshot.mjs && node --check scripts/ship-gate.mjs && node --check scripts/mutation-policy.mjs && node --check scripts/github-mutate.mjs && node --check scripts/runtime-capabilities.mjs && node --check scripts/validate-evals.mjs && node --check scripts/prepare-release.mjs && node --check scripts/validate-repository-security.mjs && node --check scripts/dependency-review-fallback.mjs && node --check scripts/build-dist.mjs && node --check scripts/install-skill.mjs && node --check scripts/verify-verdict-published.mjs && node --check scripts/lib/snapshot-input.mjs && node --check scripts/lib/snapshot-evaluators.mjs && node --check scripts/lib/live-snapshot.mjs && node --check scripts/lib/ship-gate-policy.mjs && node --check scripts/lib/watch-feedback.mjs && node --check scripts/lib/base-health-policy.mjs && node --check scripts/lib/base-health-live.mjs && node --check scripts/lib/mutation-policy.mjs && node --check scripts/lib/github-mutation-broker.mjs && node --check scripts/lib/merge-branch-cleanup.mjs && node --check scripts/lib/runtime-capabilities.mjs && node --check scripts/lib/skill-router.mjs && node --check scripts/lib/workflow-mode.mjs && node --check scripts/lib/verdict-publication.mjs && node --check scripts/lib/eval-contracts.mjs && node --check scripts/lib/release-contract.mjs && node --check scripts/lib/workflow-security.mjs && node --check scripts/lib/dependency-review-fallback.mjs && node --check scripts/lib/distribution.mjs && node --check tests/unit/ship-gate-docs.test.mjs && node --check tests/unit/base-health-docs.test.mjs && node --check tests/unit/mutation-modes-docs.test.mjs && node --check tests/unit/natural-language-merge.test.mjs && node --check tests/unit/merge-branch-cleanup.test.mjs && node --check tests/unit/live-fixture-gate-result.test.mjs && node --check tests/unit/simplify-review-contract.test.mjs && node --check tests/unit/workflow-mode.test.mjs && node --check tests/unit/verdict-publication.test.mjs && npm run security:repo && npm run dist:check && npm run evals:offline && npm test",
"release:prepare": "node scripts/prepare-release.mjs",
"security:repo": "node scripts/validate-repository-security.mjs"
}
}