forked from Santinell/jrpc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.51 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
{
"author": "Santinell",
"name": "jrpc2",
"description": "JSON-RPC 2.0 library with support of batches and named parameters. Features: Express, Koa, Socket.IO middlewares + HTTP, TCP, ZeroMQ transports",
"version": "1.0.5",
"license": "MIT",
"main": "./lib/jrpc2.js",
"keywords": [
"json",
"rpc",
"rpc2",
"json-rpc",
"json-rpc2",
"jsonrpc",
"jsonrpc2",
"server",
"client",
"tcp",
"http",
"https",
"websocket",
"socket.io",
"koa",
"zmq",
"zeromq",
"notifications",
"batch",
"named",
"parameters",
"express",
"middleware"
],
"scripts": {
"test": "npm run build && mocha -R spec",
"mocha": "mocha -R json",
"build": "coffee -c -o lib src",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec >/dev/null && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"readmeFilename": "README.md",
"dependencies": {
"async": "^1.2",
"xtend": "^4.0.0"
},
"devDependencies": {
"bluebird": "^2.9.21",
"chai": "^3.0",
"coffee-script": "^1.9",
"coveralls": "^2.11",
"express": "^4.11",
"istanbul": "^0.3",
"mocha": "^2.1",
"mocha-lcov-reporter": "^0",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5"
},
"repository": {
"type": "git",
"url": "git://github.com/Santinell/jrpc2.git"
},
"homepage": "https://github.com/Santinell/jrpc2",
"engines": {
"node": ">=0.10.0",
"iojs": ">=1.0"
}
}