forked from pocesar/node-jsonrpc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
57
58
59
60
61
62
63
{
"name": "json-rpc2",
"version": "1.0.2",
"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"
],
"license": "MIT",
"author": {
"name": "Eric Florenzano",
"url": "eflorenzano.com"
},
"maintainers": [{
"name": "Paulo Cesar",
"url": "https://github.com/pocesar"
}],
"dependencies": {
"jsonparse": "1.x.x",
"debug": "2.x.x",
"lodash": "3.x.x",
"es5class": "2.x.x",
"faye-websocket": "0.x.x",
"eventemitter3": "1.x.x",
"object-assign": "4.x"
},
"engines": {
"node": "0.10.x || 0.12.x"
},
"contributors": [
"Bill Casarin <bill@casarin.ca> (jb55.com)",
"Stefan Thomas <justmoon@members.fsf.org> (justmoon.net)",
"Paulo Cesar <email@pocesar.e4ward.com> (github.com/pocesar)"
],
"repository": {
"type": "git",
"url": "git://github.com/pocesar/node-jsonrpc2.git"
},
"bugs": {
"url": "https://github.com/pocesar/node-jsonrpc2/issues"
},
"devDependencies": {
"mocha": "2.x.x",
"expect.js": "0.x.x",
"jshint": "2.x.x",
"istanbul": "0.x.x"
},
"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"
}
}