forked from uber-archive/hyperbahn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "hyperbahn",
"version": "2.20.1",
"description": "Service Discovery and Routing",
"keywords": [],
"author": "Raynos <[email protected]>",
"repository": "git+ssh://[email protected]:uber/tchannel.git",
"homepage": "https://github.com/uber/tchannel",
"contributors": [
{
"name": "Raynos"
}
],
"dependencies": {
"bufrw": "0.9.27",
"chalk": "1.0.0",
"collect-parallel": "1.0.1",
"debug-logtron": "5.0.0",
"deep-extend": "0.3.2",
"error": "6.0.0",
"get-port": "1.0.0",
"git-repo-info": "1.0.4",
"heapdump": "0.3.5",
"inherits": "2.0.1",
"is-empty-object": "1.0.0",
"json-stringify-safe": "5.0.0",
"larch": "1.0.1",
"leaked-handles": "5.1.0",
"logtron": "8.12.1",
"minimist": "1.1.1",
"mkdirp": "0.5.0",
"null-logtron": "2.2.0",
"process": "0.10.0",
"process-reporter": "2.1.2",
"raynos-replr": "0.2.5-port-0-support",
"ready-signal": "1.2.0",
"ringpop": "10.15.0",
"run-parallel": "1.0.0",
"run-series": "1.1.2",
"safe-json-parse": "4.0.0",
"static-config": "2.1.0",
"tape-cluster": "2.0.1",
"tchannel": "^3.8.2",
"uber-statsd-client": "1.4.0",
"uncaught-exception": "6.0.2",
"xtend": "4.0.0"
},
"devDependencies": {
"body": "^5.1.0",
"eslint": "0.23.0",
"eslint-config-perf-standard": "1.0.0",
"format-stack": "4.1.0",
"istanbul": "^0.3.17",
"kafka-logger": "^6.1.0",
"ldjson-stream": "1.2.1",
"metrics": "^0.1.9",
"opn": "^0.1.2",
"rezult": "^1.0.0",
"sentry-logger": "^3.0.3",
"tape": "^4.2.2",
"time-mock": "^0.1.2",
"uber-licence": "1.5.1"
},
"licenses": [],
"scripts": {
"add-licence": "uber-licence",
"check-benchmark": "node benchmarks --relay -- --relay -r 10000 -p 1000 --skipPing",
"check-files": "bash ./scripts/verify_included.sh",
"check-licence": "uber-licence --dry",
"check-cover": "istanbul check-coverage || echo coverage failed",
"check-ls": "npm ls --loglevel=http --parseable 1>/dev/null && echo '# npm is in a good state'",
"cover": "npm run check-files && npm run test-cover -s && npm run check-cover -s",
"lint": "eslint $(git ls-files | grep '.js$') && echo '# linter passed'",
"shrinkwrap": "node bin/shrinkwrap.js --dev",
"travis": "npm run test",
"test": "npm run check-licence && npm run check-ls -s && npm run lint -s && npm run cover && npm run check-benchmark -s",
"test-ci": "npm run check-licence && npm run lint -s && npm run cover",
"test-repeat": "NODE_DEBUG=autobahn node test/index.js | FORCE_COLOR=1 tap-spec; while [ $? -eq 0 ]; do NODE_DEBUG=autobahn node test/index.js | FORCE_COLOR=1 tap-spec; done;",
"test-cover": "istanbul cover test/index.js",
"view-cover": "opn ./coverage/index.html"
},
"engines": {
"node": "0.10.x"
},
"standard": {
"ignore": [
"dashboards/*.js"
]
}
}