forked from corentinmusard/otel-cicd-action
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.42 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.42 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"name": "otel-cicd-action",
"type": "module",
"version": "4.0.0",
"description": "Github Action that export CI/CD workflows to any endpoint compatible with OpenTelemetry",
"scripts": {
"prepare": "husky",
"biome": "biome check --write .",
"biome:ci": "biome ci .",
"build": "tsc && rollup -c --configPlugin @rollup/plugin-typescript",
"test:record": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 NODE_ENV=test DOTENV_CONFIG_PATH=./.env.test RECORD_OCTOKIT=true jest",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 NODE_ENV=test DOTENV_CONFIG_PATH=./.env.test jest --collect-coverage",
"test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test DOTENV_CONFIG_PATH=./.env.test jest --collect-coverage --ci",
"all": "npm run biome && npm run build && npm run test"
},
"exports": {
".": "./dist/index.js"
},
"keywords": [],
"author": "Corentin Musard <corentin.musard+dev@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@grpc/grpc-js": "^1.14.3",
"@octokit/openapi-types": "^27.0.0",
"@octokit/request-error": "^7.1.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.5.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.211.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.211.0",
"@opentelemetry/resources": "^2.5.0",
"@opentelemetry/sdk-trace-base": "^2.5.0",
"@opentelemetry/semantic-conventions": "^1.39.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@jest/globals": "^29.7.0",
"@octokit/rest": "^22.0.1",
"@octokit/types": "^16.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^29.5.14",
"caller-callsite": "^6.0.0",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rollup": "^4.59.0",
"rollup-plugin-license": "^3.6.0",
"ts-jest": "^29.4.6",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"ultracite": "^7.1.1"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"engines": {
"node": ">=24.0.0"
}
}