-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "patchgate",
"version": "0.1.0-dev",
"private": true,
"description": "Checks GitHub pull requests for required issue links, CI evidence, code owners, and human approval before maintainer review",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/daichunghy/patchgate.git"
},
"bugs": {
"url": "https://github.com/daichunghy/patchgate/issues"
},
"homepage": "https://github.com/daichunghy/patchgate#readme",
"engines": {
"node": ">=20"
},
"keywords": [
"github-actions",
"pull-requests",
"code-review",
"review-readiness",
"governance",
"developer-tools"
],
"type": "module",
"bin": {
"patchgate": "dist/src/cli.js"
},
"files": [
"dist",
"schemas",
"action.yml",
"README.md",
"LICENSE",
"docs/patchgate.example.yml"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run verify",
"build": "tsc -p tsconfig.json",
"first-use": "npm run build && node dist/src/cli.js preflight --repo . --base main",
"bundle:action": "ncc build src/action/index.ts -o dist/action --minify --transpile-only",
"audit": "npm audit --audit-level=high",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --exclude test/cli-smoke.test.ts",
"test:coverage": "vitest run --coverage --exclude test/cli-smoke.test.ts",
"test:action": "vitest run test/action.test.ts",
"test:cli": "npm run build && vitest run test/cli-smoke.test.ts",
"test:schema": "vitest run test/schema.test.ts",
"test:fixtures": "vitest run test/fixture.test.ts",
"test:determinism": "vitest run test/determinism.test.ts",
"test:security": "vitest run test/security.test.ts",
"test:github": "vitest run test/integration",
"test:integration": "npm run test:github",
"test:redaction": "vitest run test/integration/github-security.test.ts",
"verify:fixtures": "vitest run test/integration/github-adapter.test.ts",
"check:fixture-budgets": "node scripts/check-fixture-budgets.mjs",
"check:workflow-pins": "node scripts/check-workflow-pins.mjs",
"check:workflow-events": "node scripts/check-workflow-events.mjs",
"check:doc-links": "node scripts/check-doc-links.mjs",
"check:consumer-docs": "node scripts/check-consumer-docs.mjs",
"check:community-schedule": "node scripts/check-community-schedule.mjs",
"check:application-dossier": "node scripts/check-application-dossier.mjs",
"test:consumer-fixture": "node scripts/test-consumer-fixture.mjs",
"check:release-candidate": "node scripts/check-release-candidate.mjs",
"smoke:live": "npm run build && node dist/scripts/live-smoke-harness.js",
"usability:session": "npm run build && node dist/scripts/run-usability-session.js",
"lint": "node scripts/lint.mjs",
"verify:dist": "node scripts/verify-dist.mjs",
"verify": "npm run lint && npm run typecheck && npm run check:fixture-budgets && npm run check:workflow-pins && npm run check:workflow-events && npm run check:doc-links && npm run check:consumer-docs && npm run check:community-schedule && npm run check:application-dossier && npm run audit && npm test && npm run test:security && npm run test:github && npm run build && npm run bundle:action && npm run test:consumer-fixture && npm run check:release-candidate && npm run test:cli && npm run verify:dist"
},
"dependencies": {
"ajv": "^8.20.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@vercel/ncc": "^0.45.0",
"@vitest/coverage-v8": "^4.1.11",
"typescript": "^5.9.2",
"vitest": "^4.1.11"
}
}