-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "instrumented-hapi-with-errors",
"private": true,
"version": "0.1.0",
"description": "Hapi server that only returns errors auto-instrumentation with OpenTelemetry",
"main": "index.js",
"scripts": {
"zipkin:server": "cross-env EXPORTER=zipkin node ./server.js",
"jaeger:server": "cross-env EXPORTER=jaeger node ./server.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:CptSchnitz/instrumented-hapi-with-errors.git"
},
"engines": {
"node": ">=8"
},
"license": "Apache-2.0",
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@opentelemetry/api": "^1.0.1",
"@opentelemetry/exporter-jaeger": "^0.23.0",
"@opentelemetry/exporter-zipkin": "^0.23.0",
"@opentelemetry/instrumentation": "^0.23.0",
"@opentelemetry/instrumentation-hapi": "^0.23.0",
"@opentelemetry/instrumentation-http": "^0.23.0",
"@opentelemetry/node": "^0.23.0",
"@opentelemetry/tracing": "^0.23.0"
},
"devDependencies": {
"cross-env": "^6.0.0"
}
}