-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"name": "zipkin-instrumentation-gotjs",
"version": "0.22.0",
"description": "Interceptor for HTTP clients using the Got library",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"build": "babel src -d lib",
"test": "mocha --exit --require ../../test/helper.js --require @babel/register",
"test-debug": "mocha --inspect-brk --exit --require ../../test/helper.js",
"prepublish": "npm run build"
},
"keywords": [
"zipkin",
"http",
"got"
],
"author": "OpenZipkin <openzipkin.alt@gmail.com>",
"license": "Apache-2.0",
"repository": "https://github.com/openzipkin/zipkin-js",
"peerDependencies": {
"got": ">= 9.6.0"
},
"dependencies": {
"zipkin": "^0.22.0"
},
"devDependencies": {
"got": "^9.6.0"
}
}