This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
86 lines (86 loc) · 2.86 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
{
"name": "tchannel",
"description": "network multiplexing and framing protocol for RPC or parser drag racing",
"author": "[email protected]",
"version": "4.0.0",
"scripts": {
"lint": "eslint $(git ls-files | grep '.js$')",
"travis": "npm run check-licence && npm run lint -s && npm run travis-cover -s && npm run check-benchmark -s",
"test": "npm run check-licence && npm run lint -s && npm run cover -s && npm run check-benchmark -s",
"benchmark": "echo '!!! DEPRECATED: Better to just run `node benchmarks` directly' >&2; node benchmarks",
"hyperbahn-link-test": "./test/link_hyperbahn.sh",
"tcurl-link-test": "./test/link_tcurl.sh",
"check-benchmark": "node benchmarks -- -r 10000 -p 750",
"take-benchmark": "make -C benchmarks take",
"take-relay-benchmark": "make -C benchmarks take_relay",
"take-trace-benchmark": "amke -C benchmarks take_trace",
"cover": "npm run check-files && npm run test-cover && nyc check-coverage",
"travis-cover": "npm run check-files && npm run travis-test-cover && nyc check-coverage",
"check-files": "bash scripts/verify_included.sh",
"test-cover": "nyc node test/index.js | faucet && nyc report --reporter=lcov --reporter text",
"travis-test-cover": "nyc node test/index.js && nyc report --reporter text",
"check-cover": "nyc check-coverage",
"view-cover": "opn coverage/lcov-report/index.html",
"check-licence": "uber-licence --dry",
"add-licence": "uber-licence"
},
"main": "channel",
"repository": {
"type": "git",
"url": "[email protected]:uber/tchannel-node"
},
"dependencies": {
"bufrw": "^1.2.1",
"crc": "^3.8.0",
"error": "^7.0.1",
"farmhash": "^3.0.0",
"json-stringify-safe": "^5.0.1",
"metrics": "^0.1.21",
"minimist": "^1.2.0",
"process": "^0.11.10",
"raw-body": "^2.4.1",
"ready-signal": "^1.3.0",
"run-parallel": "^1.1.9",
"run-series": "^1.1.8",
"safe-json-parse": "^4.0.0",
"sse4_crc32": "^6.0.1",
"thriftrw": "^3.12.0",
"xorshift": "^1.1.1",
"xtend": "^4.0.2"
},
"devDependencies": {
"async": "^3.1.0",
"chalk": "^1.1.3",
"collect-parallel": "^1.0.1",
"debug-logtron": "^5.2.0",
"duplexer": "^0.1.1",
"eslint": "0.24.0",
"eslint-config-perf-standard": "1.0.0",
"faucet": "0.0.1",
"format-stack": "^4.1.1",
"hexer": "^1.5.0",
"itape": "^1.9.1",
"lb_pool": "^1.6.3",
"ldjson-stream": "^1.2.1",
"loadtest": "1.2.14",
"my-local-ip": "1.0.0",
"nyc": "^15.0.0",
"once": "^1.4.0",
"opn": "^1.0.2",
"replr": "^1.0.6",
"split2": "^3.1.1",
"tape": "^4.13.0",
"through2": "^3.0.1",
"time-mock": "^0.1.4",
"uber-licence": "^3.1.1",
"uber-statsd-client": "^1.7.3"
},
"pre-commit": [],
"pre-commit.silent": true,
"nyc": {
"branches": 60,
"lines": 60,
"statements": 60,
"functions": 60
}
}