-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "booms",
"version": "1.6.9",
"description": "A high-performance and easy-to-use RPC microservices framework for Node.js, load a directory as a RPC server, call a remote function or method of a remote object like s1.say.hi(), as same as do it at local. Booms can passes not only data, but also callback functions to the server, that's awesome. Booms is based on Node.js native TCP socket. It does not require you to write proto files, which is more easier to use.",
"main": "index.js",
"scripts": {
"test": "cd test && mocha . --exit"
},
"keywords": [
"rpc",
"microservices",
"remote procedure call",
"node framework",
"rpc framework",
"microservices framework"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"caller": "^1.0.1",
"fs-extra": "^8.1.0",
"ioredis": "^4.14.1",
"kdo": "^1.8.1",
"keypaths": "^0.1.5",
"lodash": "^4.6.1",
"removeredundanttabs": "^0.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"lodash": "^4.17.15",
"mocha": "^6.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiowenluke/booms.git"
},
"bugs": {
"url": "https://github.com/hiowenluke/booms/issues"
},
"homepage": "https://github.com/hiowenluke/booms#readme"
}