This repository has been archived by the owner on Dec 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "multi-rpc",
"version": "2.5.0",
"description": "A JSON-RPC 2 compliant client/server implementation designed with multiple transports in mind",
"main": "lib/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"docs": "lerna exec -- npm run docs && grunt docs",
"build": "lerna exec -- npm run build && grunt build",
"prepare": "npm run build"
},
"repository": {
"url": "https://github.com/znetstar/multi-rpc",
"type": "git"
},
"author": "Zachary Boyd <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"multi-rpc-core": "^2.1.0",
"multi-rpc-http-transport": "^2.x",
"multi-rpc-json-serializer": "^2.1.1",
"multi-rpc-msgpack-serializer": "^2.1.0",
"multi-rpc-tcp-transport": "^2.x",
"multi-rpc-websocket-transport": "^2.x"
},
"keywords": [
"rpc",
"jsonrpc",
"json",
"websocket",
"json-rpc",
"tcp",
"http"
],
"devDependencies": {
"@types/node": "^14.17.5",
"chai": "^4.3.4",
"chance": "^1.1.7",
"get-port": "^5.1.1",
"grunt": "^1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-typedoc": "^0.2.4",
"lerna": "^4.0.0",
"mocha": "^8.4.0",
"multi-rpc-common": "^3.3.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"shelljs": "^0.8.4",
"typedoc": "^0.22.14",
"typescript": "^4.6.3"
}
}