forked from openzipkin/zipkin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "@zocdoc/zipkin-transport-kafka",
"description": "Transports Zipkin trace data via Kafka to the collector",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"build": "babel src -d lib",
"test": "mocha --require ./test/helper.js",
"prepublish": "npm run build"
},
"license": "Apache-2.0",
"repository": "https://github.com/zocdoc/zipkin-js",
"publishConfig": {
"registry": "https://npm.zocdoc-ci.com/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/kafka-node": "^2.0.3",
"kafka-node": "^2.2.0",
"zipkin-encoder-thrift": "^0.12.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"debug": "^3.1.0",
"kafka-please": "^1.0.1",
"mocha": "^3.2.0",
"semantic-release": "^15.5.0",
"sinon": "^1.17.6",
"travis-deploy-once": "^5.0.0",
"zipkin": "^0.12.0"
}
}