-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 851 Bytes
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
{
"name": "ci-audit",
"version": "0.1.0",
"description": "See where your CI time actually goes — for any GitHub repo, in one command.",
"keywords": ["github-actions", "ci", "cli", "performance", "flaky", "devops"],
"license": "MIT",
"author": "m-de-graaff",
"repository": { "type": "git", "url": "git+https://github.com/m-de-graaff/ci-audit.git" },
"bugs": { "url": "https://github.com/m-de-graaff/ci-audit/issues" },
"homepage": "https://github.com/m-de-graaff/ci-audit#readme",
"type": "module",
"bin": { "ci-audit": "dist/cli.js" },
"files": ["dist"],
"engines": { "node": ">=20" },
"scripts": {
"build": "tsc",
"test": "node --test test/*.test.ts",
"dev": "node src/cli.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.9.2"
}
}