-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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
{
"name": "tracing-middleware",
"version": "0.2.1",
"description": "opentracing middleware for express-js",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clever/tracing-middleware.git"
},
"keywords": [
"tracing",
"opentracing",
"middleware"
],
"author": "Clever",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Clever/tracing-middleware/issues"
},
"homepage": "https://github.com/Clever/tracing-middleware#readme",
"dependencies": {
"opentracing": "^0.11.0"
},
"peerDependencies": {
"opentracing": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"express": "3.x.x",
"lightstep-tracer": "^0.11.20",
"mocha": "^3.2.0",
"request": "^2.79.0",
"sinon": "^1.17.7",
"underscore": "^1.8.3"
}
}