-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "rinvoke",
"version": "1.1.0",
"description": "RPC library based on net sockets, can work both with tcp sockets and ipc",
"main": "./server.js",
"bin": {
"rinvoke": "./lib/bin.js"
},
"scripts": {
"test": "standard && tap test/*.test.js",
"coveralls": "tap test/*.test.js --cov --coverage-report=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delvedor/rinvoke.git"
},
"keywords": [
"rpc",
"tcp",
"ipc",
"function",
"remote",
"multiplex",
"fire",
"forget",
"fire and forget"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/delvedor/rinvoke/issues"
},
"homepage": "https://github.com/delvedor/rinvoke#readme",
"dependencies": {
"ajv": "^5.2.2",
"avvio": "^2.0.3",
"debug": "^3.0.0",
"minimist": "^1.2.0",
"pump": "^1.0.2",
"tentacoli": "^1.0.0",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"msgpack5": "^3.5.0",
"standard": "^10.0.3",
"tap": "^10.7.2",
"then-sleep": "^1.0.1"
}
}