-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 KB
/
package.json
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
{
"name": "ci_analyzer",
"version": "6.2.0",
"description": "Export multiple CI service build data for analyzing.",
"repository": {
"type": "git",
"url": "git+https://github.com/Kesin11/CIAnalyzer.git"
},
"keywords": [
"CI"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kesin11/CIAnalyzer/issues"
},
"homepage": "https://github.com/Kesin11/CIAnalyzer#readme",
"engines": {
"node": "^22.13.0"
},
"bin": {
"ci_analyzer": "dist/index.js"
},
"type": "module",
"scripts": {
"start": "node --enable-source-maps dist/index.mjs",
"clean": "rm -rf dist",
"build": "npx tsx scripts/esbuild.ts",
"build:clean": "npm run clean && npm run build",
"check": "tsc --noEmit",
"check:watch": "tsc --watch --noEmit",
"biome:ci": "biome ci .",
"lint:fix": "biome lint --apply-unsafe .",
"fmt:fix": "biome format --write .",
"test": "TZ=UTC vitest",
"test:ci": "TZ=UTC vitest --run --coverage",
"proto": "earthly --strict --remote-cache=ghcr.io/kesin11/ci_analyzer_earthly:cache +proto",
"docker": "earthly --strict --remote-cache=ghcr.io/kesin11/ci_analyzer_earthly:cache +docker",
"schema": "earthly --strict --remote-cache=ghcr.io/kesin11/ci_analyzer_earthly:cache +schema"
},
"dependencies": {
"@google-cloud/bigquery": "7.9.1",
"@google-cloud/storage": "7.15.0",
"@octokit/plugin-retry": "7.1.3",
"@octokit/plugin-throttling": "9.4.0",
"@octokit/rest": "21.1.0",
"adm-zip": "0.5.16",
"axios": "1.7.9",
"axios-retry": "4.5.0",
"dayjs": "1.11.13",
"js-yaml": "4.1.0",
"junit2json": "3.1.13",
"lodash-es": "4.17.21",
"minimatch": "10.0.1",
"tslog": "4.9.3",
"utility-types": "3.11.0",
"yargs": "17.7.2",
"zod": "3.24.1",
"zod-to-json-schema": "3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@google-cloud/common": "^5.0.2",
"@types/adm-zip": "0.5.7",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.5",
"@types/yargs": "17.0.33",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "0.24.2",
"ts-proto": "2.6.1",
"ts-protoc-gen": "0.15.0",
"typescript": "5.7.3",
"vitest": "2.1.8"
}
}