forked from BohdanTkachenko/node-json-rpc-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "json-rpc-server",
"version": "0.0.3",
"author": {
"name": "Bogdan Tkachenko",
"email": "[email protected]"
},
"description": "Simple implementation of JSON-RPC 2.0 server-side protocol with middleware support. Needs HTTP or any another server to communicate with clients.",
"scripts": {
"test": "nodeunit tests/json-rpc-server-test.js"
},
"main": "./json-rpc-server",
"repository": {
"type": "git",
"url": "git://github.com/bogus-weber/node-json-rpc-server.git"
},
"keywords": [
"json-rpc",
"rpc"
],
"dependencies": {
"async": "*",
"underscore": "*"
},
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"readme": "json-rpc-server\n===============\n\nSimple implementation of JSON-RPC 2.0 server-side protocol with middleware support. Needs HTTP or any another server to communicate with clients.",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/bogus-weber/node-json-rpc-server/issues"
},
"dist": {
"shasum": "f89a49ad97f6cb266572c987ad03729d04ddb65d"
}
}