forked from inception-health/otel-export-trace-action
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 2.19 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
{
"private": true,
"name": "otel-cicd-action",
"type": "module",
"version": "2.2.3",
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^1.30.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.57.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.1",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-trace-base": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.28.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@octokit/rest": "^21.1.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"caller-callsite": "^5.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rollup": "^4.32.1",
"rollup-plugin-license": "^3.5.3",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"lint-staged": {
"*": ["biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"]
},
"engines": {
"node": ">=20.0.0"
}
}