This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
{
"name": "tcap",
"version": "5.6.1",
"description": "pcap analyzer for tchannel connections",
"keywords": [],
"author": "Kris Kowal <kris@uber.com>",
"repository": "git://github.com/uber/tcap.git",
"main": "index.js",
"bin": {
"tcap": "./bin/tcap.js"
},
"homepage": "https://github.com/uber/tcap",
"bugs": {
"url": "https://github.com/uber/tcap/issues",
"email": "kris@uber.com"
},
"contributors": [
{
"name": "Kris Kowal"
}
],
"dependencies": {
"bufrw": "^0.9.20",
"chalk": "^1.0.0",
"commander": "^2.6.0",
"hexer": "^1.4.5",
"pcap": "^2.0.1",
"sprintf-js": "^1.0.2",
"tchannel": "^3.5.19",
"thriftrw": "^3.4.3"
},
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.3.5",
"itape": "^1.5.0",
"lint-trap": "^1.0.0",
"opn": "^1.0.1",
"tape": "^3.4.0",
"uber-licence": "^1.2.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/uber/tcap/raw/master/LICENSE"
}
],
"scripts": {
"add-licence": "uber-licence",
"check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100",
"check-licence": "uber-licence --dry",
"check-ls": "npm ls 1>/dev/null",
"cover": "npm run test-cover -s && npm run check-cover -s",
"lint": "lint-trap .",
"test": "npm run check-ls -s",
"test-cover": "istanbul cover --report html --print detail -- test/index.js",
"trace": "itape test/index.js --trace",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"view-cover": "opn ./coverage/index.html"
},
"engines": {
"node": ">= 0.10.x"
},
"pre-commit": [
"check-licence",
"test"
],
"pre-commit.silent": true,
"itape": {
"trace": {
"debuglog": [
"tcap"
],
"leakedHandles": {
"timeout": 5001,
"debugSockets": true
},
"formatStack": true
}
},
"uber-ngen-version": "5.0.0"
}