forked from misablaha/node-jsonrpc2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "json-rpc2",
"version": "0.4.3",
"description": "JSON-RPC 2.0 server and client library, with HTTP, TCP and Websocket endpoints",
"main": "./src/jsonrpc.js",
"keywords": [
"json",
"rpc",
"rpc2",
"json-rpc",
"json-rpc2",
"jsonrpc",
"jsonrpc2",
"server",
"client",
"tcp",
"websocket",
"http"
],
"author": "Eric Florenzano <[email protected]> (eflorenzano.com)",
"dependencies": {
"jsonparse": "*",
"debug": "*",
"lodash": "*",
"es5class": "*",
"faye-websocket": "*",
"eventemitter3": "*"
},
"engines": {
"node": "0.8.x || 0.10.x"
},
"contributors": [
"Bill Casarin <[email protected]> (jb55.com)",
"Stefan Thomas <[email protected]> (justmoon.net)",
"Paulo Cesar <[email protected]> (github.com/pocesar)"
],
"repository": {
"type": "git",
"url": "git://github.com/pocesar/node-jsonrpc2.git"
},
"devDependencies": {
"mocha": "*",
"expect.js": "*",
"jshint": "*",
"istanbul": "*"
},
"scripts": {
"test": "jshint examples src test && mocha test/*.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -t 5000 test/jsonrpc-test.js"
}
}