forked from devktor/jsonrpc-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 828 Bytes
/
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
{
"name": "jsonrpc-node",
"preferGlobal": false,
"version": "1.2.94",
"author": "Victor Bucataru <[email protected]>",
"description": "JSON RPC client/server with multiple transport types : TCP, HTTP, Middleware and SSL support",
"contributors": [
{
"name": "Victor Bucataru",
"email": "[email protected]"
}
],
"dependencies" : {
"coffee-script": "*",
"express": "*",
"body-parser": "*"
},
"license": "MIT",
"repository":{
"type":"git",
"url":"https://github.com/devktor/jsonrpc-node"
},
"bugs":{
"url": "https://github.com/devktor/jsonrpc-node/issues"
},
"scripts": {
"install": "coffee -o lib -c src/"
},
"keywords": ["jsonrpc", "rpc", "tcp", "udp", "socket", "client", "server"],
"main": "lib/main.js",
"engines": {
"node": "*"
}
}