-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "fastify-jaeger",
"version": "1.0.2",
"description": "Fastify plugin for Jaeger distributed tracing system",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"jaeger": "docker container run -d -p 6831:6831/udp -p 6832:6832/udp -p 16686:16686 jaegertracing/all-in-one:1.17",
"test": "tap **/*.test.js",
"lint": "standard | snazzy",
"fix": "standard --fix"
},
"files": [
"test",
"index.js",
"index.d.ts",
"example.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maumercado/fastify-jaeger.git"
},
"keywords": [
"tracing",
"jaeger",
"trace",
"fastify",
"distributed",
"timing"
],
"author": "Mauricio Mercado - @maumercado (https://codigo.sh)",
"license": "ISC",
"bugs": {
"url": "https://github.com/maumercado/fastify-jaeger/issues"
},
"homepage": "https://github.com/maumercado/fastify-jaeger#readme",
"devDependencies": {
"@types/node": "^15.3.0",
"fastify": "^2.13.0",
"snazzy": "^8.0.0",
"standard": "^14.3.3",
"tap": "^14.10.7",
"typescript": "^3.9.9"
},
"dependencies": {
"fastify-plugin": "^1.6.1",
"jaeger-client": "^3.17.2"
}
}