forked from openzipkin/zipkin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.02 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
{
"name": "zipkin-instrumentation-kafkajs",
"version": "0.19.2",
"description": "Zipkin JS wrapper for kafkajs consumer and producer.",
"main": "lib/zipkin-instrumentation-kafkajs.js",
"scripts": {
"build": "babel src -d lib",
"pretest": "(docker kill kafkajs-test; docker rm kafkajs-test) 2>&-; docker run -d -p 9092:9092 --name kafkajs-test --hostname localhost openzipkin/zipkin-kafka && timeout 60 bash -c 'until echo > /dev/tcp/localhost/9092; do sleep 1; done'",
"test": "mocha --exit --require ../../test/helper.js --require @babel/register",
"test-debug": "mocha --inspect-brk --exit --require ../../test/helper.js",
"posttest": "docker kill kafkajs-test && docker rm kafkajs-test",
"prepublish": "npm run build"
},
"author": "OpenZipkin <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/openzipkin/zipkin-js",
"dependencies": {
"zipkin": "^0.19.2"
},
"devDependencies": {
"kafkajs": "^1.9.3",
"promise.prototype.finally": "3.1.0"
}
}