-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "jrpc",
"version": "0.1.0",
"description": "A lightweight enterprise-grade Node.js RPC framework based on JSON-RPC 2.0, supporting HTTP, Socket, and HTTP2 transports with distributed capabilities",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha test/**/*.test.js",
"test:coverage": "nyc npm test",
"lint": "eslint lib/**/*.js test/**/*.js",
"lint:fix": "eslint lib/**/*.js test/**/*.js --fix",
"benchmark": "node benchmark/single-instance.js"
},
"keywords": [
"rpc",
"json-rpc",
"jsonrpc",
"microservices",
"distributed",
"http",
"socket",
"http2",
"service-discovery",
"load-balancer",
"consul",
"enterprise"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/jrpc.git"
},
"bugs": {
"url": "https://github.com/yourusername/jrpc/issues"
},
"homepage": "https://github.com/yourusername/jrpc#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"chai": "^4.4.1",
"nyc": "^15.1.0"
}
}