forked from jaegertracing/jaeger-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.42 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "shimo-jaeger-client",
"version": "3.7.3",
"description": "Jaeger binding for OpenTracing Node",
"license": "Apache-2.0",
"keywords": [],
"author": "Onwukike Ibe <[email protected]>",
"main": "./entrypoint.js",
"repository": {
"type": "git",
"url": "https://github.com/shimohq/jaeger-client-node"
},
"contributors": [
"Yuri Shkuro <[email protected]>",
"Won Jun Jang <[email protected]>"
],
"dependencies": {
"node-int64": "^0.4.0",
"thriftrw": "^3.5.0",
"xorshift": "^0.2.0",
"opentracing": "^0.13.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-istanbul": "^0.11.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.1",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-flowtype": "^2.4.0",
"eslint-plugin-react": "^4.3.0",
"express": "^4.14.0",
"flow-bin": "^0.30.0",
"gulp-sourcemaps": "1.7.x",
"lodash": "^4.15.0",
"minimist": "1.2.0",
"mocha": "^3.0.1",
"request": "2.74.0",
"rsvp": "^3.3.1",
"semver": "^5",
"sinon": "^1.17.5",
"source-map-support": "^0.4.5",
"tchannel": "^3.9.0",
"uber-licence": "^2.0.2",
"underscore": "^1.8.3"
},
"scripts": {
"check-license": "./scripts/check-license.sh",
"check-ls": "npm ls --loglevel=http --parseable 1>/dev/null && echo '# npm is in a good state'",
"cover": "babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- test/ test/samplers/ test/baggage/",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"flow": "flow",
"lint": "eslint $(ls src/ | grep '.js$') && echo '# linter passed' && npm run check-license",
"test": "make test",
"test-all": "npm run test-core && npm run test-samplers && npm run test-crossdock && npm run test-baggage",
"test-core": "mocha --compilers js:babel-core/register test",
"test-samplers": "mocha --compilers js:babel-core/register test/samplers",
"test-baggage": "mocha --compilers js:babel-core/register test/baggage",
"test-crossdock": "mocha --compilers js:babel-register crossdock/test",
"show-cover": "open coverage/lcov-report/index.html"
}
}