-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 852 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 852 Bytes
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
{
"name": "thtp",
"version": "0.0.1",
"description": "A THTP client library implementing Thrift-RPC over standard persistent HTTP connections",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/anujdas/thtp-js.git"
},
"keywords": [
"thtp",
"thrift",
"thrift-rpc",
"rpc",
"http",
"https",
"persistent"
],
"author": "Anuj Das <anujdas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anujdas/thtp-js/issues"
},
"homepage": "https://github.com/anujdas/thtp-js#readme",
"dependencies": {
"node-fetch": "^2.1.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-brigade": "^7.0.0",
"thrift": "^0.11.0"
},
"peerDependencies": {
"thrift": "^0.11.0"
}
}