-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "maintenance",
"version": "1.0.0",
"description": "CLI tools for GitHub organization maintenance — governance reports that run on cron schedules and surface violations as GitHub issues",
"type": "module",
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"ci": "bun run typecheck && bun run lint && bun run format:check && bun test",
"report:repos-with-no-team": "bun run src/reports/repos-with-no-team.ts",
"report:repos-with-no-admin-team": "bun run src/reports/repos-with-no-admin-team.ts",
"report:repos-with-multi-admin-teams": "bun run src/reports/repos-with-multi-admin-teams.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"eslint": "^10.0.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.55.0"
},
"dependencies": {
"octokit": "^5.0.5",
"picocolors": "^1.1.1"
}
}