-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "@risingstack/jaeger",
"version": "2.5.0",
"description": "Out of the box OpenTracing instrumentation for Node.js and Jaeger",
"main": "src/index.js",
"scripts": {
"test": "mocha test/setup.js 'src/**/*.spec.js'",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"lint": "eslint test src",
"example": "npm-run-all --parallel example-server1 example-server2",
"example-server1": "node example/server1",
"example-server2": "node example/server2"
},
"author": "RisingStack, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RisingStack/jaeger-node.git"
},
"bugs": {
"url": "https://github.com/RisingStack/jaeger-node/issues"
},
"homepage": "https://github.com/RisingStack/jaeger-node#readme",
"keywords": [
"jaeger",
"opentracing",
"tracing"
],
"dependencies": {
"@risingstack/opentracing-auto": "1.0.1",
"jaeger-client": "3.5.3",
"lodash": "4.17.4"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.5.0",
"eslint-config-airbnb-base": "11.3.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-promise": "3.5.0",
"express": "4.15.4",
"mocha": "3.5.0",
"monk": "6.0.3",
"nock": "9.0.14",
"npm-run-all": "4.1.1",
"nyc": "11.1.0",
"pg": "6.4.0",
"request": "2.81.0",
"request-promise-native": "1.0.4",
"sinon": "3.2.1",
"sinon-chai": "2.13.0",
"super-request": "1.2.0"
},
"engines": {
"node": ">=8.0.0"
}
}