-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "autojaeger-node",
"version": "0.0.2",
"description": "short and simple way to send tracing to jaeger",
"main": "src/autojaeger.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/autojaeger.js",
"test": "mocha test/unit --recursive --require @babel/register --exit",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"build": "node src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avenda/autojaeger-node.git"
},
"keywords": [
"jaeger",
"trace",
"tracing",
"opentracing"
],
"author": "avenda@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/avenda/autojaeger-node/issues"
},
"homepage": "https://github.com/avenda/autojaeger-node#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@risingstack/opentracing-auto": "^1.5.2",
"express": "^4.16.4",
"jaeger-client": "^3.13.0"
}
}