-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "codeowners-guard",
"version": "0.2.0",
"description": "GitHub-native CODEOWNERS syntax, coverage, and rule validation",
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"author": "Rares (rarepops)",
"repository": {
"type": "git",
"url": "git+https://github.com/rarepops/codeowners-guard.git"
},
"bugs": {
"url": "https://github.com/rarepops/codeowners-guard/issues"
},
"homepage": "https://github.com/rarepops/codeowners-guard#readme",
"packageManager": "npm@11.19.0",
"keywords": [
"codeowners",
"github-action",
"lint",
"validation"
],
"bin": {
"codeowners-guard": "./dist/cli.js"
},
"files": [
"assets/codeowners-guard.png",
"dist/cli.js",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=24"
},
"scripts": {
"bench": "vitest bench --run",
"build": "node scripts/build.mjs",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"format": "biome check --write src test scripts",
"lint": "biome check src test scripts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@actions/core": "3.0.1",
"@biomejs/biome": "2.5.13",
"@types/node": "24.13.4",
"@vitest/coverage-v8": "5.0.0",
"esbuild": "0.28.2",
"ignore": "7.0.9",
"typescript": "7.0.2",
"vitest": "5.0.0",
"yaml": "2.9.1"
}
}