This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.39 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": "tcurl",
"version": "4.23.1",
"description": "A command line utility to talk to a tchannel server",
"keywords": [],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/uber/tcurl.git",
"main": "index.js",
"homepage": "https://github.com/uber/tcurl",
"bin": {
"tcurl": "index.js"
},
"bugs": {
"url": "https://github.com/uber/tcurl/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Raynos"
}
],
"dependencies": {
"camelcase-keys": "^1.0.0",
"debug-logtron": "^5.2.0",
"my-local-ip": "^1.0.0",
"process": "^0.11.0",
"rc": "^1.1.2",
"readable-stream": "^2.3.6",
"safe-json-parse": "^4.0.0",
"shon": "^4.0.0",
"tchannel": "^3.7.0",
"thriftrw": "^3.5.0",
"traverse": "^0.6.6",
"xtend": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^1.9.1",
"format-stack": "4.1.1",
"itape": "^1.5.0",
"marked-man": "^0.2.1",
"nyc": "6.4.4",
"opn": "^5.3.0",
"ready-signal": "^1.2.0",
"tape": "^4.9.0",
"uber-licence": "^3.1.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/uber/tcurl/raw/master/LICENSE"
}
],
"scripts": {
"add-licence": "uber-licence",
"build-usage": "usage2json tcurl.usage > tcurl.json && usage2json health.usage > health.json",
"check-cover": "nyc check-coverage --branches=50 --lines=70 --functions=80 && nyc report || echo lol",
"check-licence": "uber-licence --dry",
"check-ls": "npm ls",
"cover": "npm run test-cover -s && npm run check-cover -s",
"lint": "eslint .",
"man": "bash scripts/create-man.sh",
"test": "npm run check-ls -s && npm run lint -s && npm run man && npm run build-usage && npm run cover -s",
"test-cover": "nyc --reporter=lcov --reporter=html -- node test/index.js",
"trace": "itape test/index.js --trace",
"travis": "npm run cover -s && nyc 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": [
"tcurl"
],
"leakedHandles": {
"timeout": 5001,
"debugSockets": true
},
"formatStack": true
}
},
"uber-ngen-version": "5.1.0"
}