forked from fuson/node-jsonrpc2
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
65 lines (65 loc) · 1.58 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
64
65
{
"name": "json-rpc2",
"version": "2.0.0",
"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.3.1",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"es5class": "^2.3.1",
"faye-websocket": "^0.11.3",
"object-assign": "^4.1.1"
},
"engines": {
"node": ">= 10"
},
"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"
},
"bugs": {
"url": "https://github.com/pocesar/node-jsonrpc2/issues"
},
"devDependencies": {
"mocha": "^7.1.1",
"expect.js": "^0.3.1",
"jshint": "^2.11.0",
"istanbul": "^0.4.5",
"@types/node": "^13.13.0"
},
"scripts": {
"test": "jshint examples src test && mocha test/jsonrpc-test.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -t 5000 test/jsonrpc-test.js"
}
}