-
-
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) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.14 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": "codeowners-enforcer",
"author": "Garret Patten",
"version": "1.3",
"description": "GitHub Action: enforce that pull request file changes resolve to a CODEOWNERS owner in .github/CODEOWNERS",
"private": true,
"keywords": [
"github-actions",
"codeowners",
"pull-request",
"ci",
"repository-health"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/garretpatten/codeowners-enforcer.git"
},
"license": "MIT",
"homepage": "https://github.com/garretpatten/codeowners-enforcer#readme",
"scripts": {
"build": "ncc build src/action.ts --minify",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint:prettier": "prettier --check .",
"lint:md": "markdownlint-cli2",
"lint:yaml": "yamllint -c .yamllint.yaml ."
},
"dependencies": {
"@actions/core": "^2.0.3",
"ignore": "^7.0.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"jest": "^29.7.0",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
}
}