-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "@fastify/zipkin",
"version": "4.0.1",
"description": "Fastify plugin for Zipkin distributed tracing system.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd",
"zipkin": "docker run -p 9411:9411 openzipkin/zipkin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-zipkin.git"
},
"keywords": [
"fastify",
"zipkin",
"trace",
"distributed",
"tracing",
"timing"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"devDependencies": {
"@fastify/pre-commit": "2.2.0",
"c8": "^10.1.2",
"eslint": "^9.17.0",
"fastify": "^5.0.0",
"neostandard": "^0.12.0",
"node-fetch": "^2.6.7",
"sinon": "^19.0.2",
"tsd": "^0.31.0"
},
"dependencies": {
"fastify-plugin": "^5.0.0",
"zipkin": "^0.22.0",
"zipkin-context-cls": "^0.22.0",
"zipkin-transport-http": "^0.22.0"
},
"bugs": {
"url": "https://github.com/fastify/fastify-zipkin/issues"
},
"homepage": "https://github.com/fastify/fastify-zipkin#readme",
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}