-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.57 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.57 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
{
"name": "github-policy-gate",
"version": "0.1.0",
"description": "Policy as code for safer software delivery in GitHub CI.",
"private": false,
"type": "commonjs",
"main": "dist/index.js",
"files": [
"action.yml",
"dist",
"README.md",
"LICENSE",
"docs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm run clean && tsup --config tsup.config.ts",
"clean": "rm -rf build dist coverage .vitest",
"compile": "tsc --outDir build",
"lint": "mkdir -p build && eslint src tests scripts eslint.config.cjs",
"lint:ci": "mkdir -p build && eslint src tests scripts eslint.config.cjs --max-warnings=0",
"lint-fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"validate:config": "pnpm run compile && node scripts/validate-example-config.js",
"validate": "pnpm run validate:config",
"check": "pnpm run lint:ci && pnpm run format:check && pnpm run typecheck && pnpm run test && pnpm run coverage && pnpm run build",
"prepare": "pnpm run build",
"release-dry-run": "pnpm run build && pnpm pack --dry-run"
},
"keywords": [
"github action",
"policy as code",
"ci policy",
"pull request guardrails",
"safer merges",
"required files",
"labels",
"approvals",
"pull request policy",
"github ci"
],
"author": "",
"license": "PolyForm-Noncommercial-1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/failuresmith/github-policy-gate.git"
},
"homepage": "https://github.com/failuresmith/github-policy-gate#readme",
"bugs": {
"url": "https://github.com/failuresmith/github-policy-gate/issues"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"js-yaml": "^4.1.1",
"picomatch": "^4.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"@types/picomatch": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.1.2",
"c8": "^11.0.0",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@8.15.4+sha512.0bd3a9be9eb0e9a692676deec00a303ba218ba279d99241475616b398dbaeedd11146f92c2843458f557b1d127e09d4c171e105bdcd6b61002b39685a8016b9e"
}