-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@dash0hq/opentelemetry",
"version": "0.0.0-managed-by-semantic-release",
"description": "Dash0 OpenTelemetry Wrapper for Node.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --build --force",
"verify": "npm run lint && npm test",
"lint": "npm run eslint && npm run prettier-check",
"eslint": "eslint eslint.config.js src test",
"prepack": "rimraf dash0hq-opentelemetry-*.tgz && npm run build",
"prettier": "prettier --write eslint.config.js .mocharc.js 'src/**/*.[jt]s' 'test/**/*.[jt]s' --parser typescript",
"prettier-check": "prettier --check eslint.config.js 'src/**/*.[jt]s' 'test/**/*.[jt]s' --parser typescript",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha --config test/.mocharc.unit.js --require ts-node/register",
"test:integration": "mocha --config test/.mocharc.integration.js --require ts-node/register --require test/integration/rootHooks.ts",
"test:coverage": "nyc npm run test",
"start-collector": "node --require ts-node/register test/collector/index.ts"
},
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"dist/**/*.ts.map",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dash0hq/opentelemetry-js-distribution.git"
},
"license": "Apache-2.0",
"author": {
"name": "Bastian Krol",
"email": "[email protected]"
},
"contributors": [],
"keywords": [
"OpenTelemetry",
"OTel",
"Dash0",
"observability",
"APM",
"monitoring",
"performance",
"tracing"
],
"bugs": {
"url": "https://github.com/dash0hq/opentelemetry-js-distribution/issues"
},
"homepage": "https://github.com/dash0hq/opentelemetry-js-distribution#readme",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.55.0",
"@opentelemetry/exporter-logs-otlp-proto": "^0.57.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.57.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.0",
"@opentelemetry/instrumentation-kafkajs": "^0.7.0",
"@opentelemetry/resource-detector-container": "^0.6.0",
"@opentelemetry/resources": "^1.25.1",
"@opentelemetry/sdk-logs": "^0.57.0",
"@opentelemetry/sdk-metrics": "^1.25.1",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-base": "^1.25.1",
"@opentelemetry/sdk-trace-node": "^1.25.1"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@grpc/grpc-js": "^1.10.10",
"@types/chai": "^4.3.16",
"@types/is-ci": "^3.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.3",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"is-ci": "^4.1.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"protobufjs": "^7.3.2",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"semver": "^7.6.2",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"ts-proto": "^2.0.2",
"type-fest": "^4.20.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0"
}
}