-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "ts-rpc-node",
"version": "0.0.3",
"description": "This is a simple RPC framwork.It serves a small amount services well.",
"keywords": [
"rpc",
"javascript",
"node",
"nodejs",
"remote procedure call",
"typescript"
],
"main": "bin/index.js",
"scripts": {
"test": "jest",
"server": "node bin/test/start_server.js",
"client1": "node bin/test/start_client1.js",
"client2": "node bin/test/start_client2.js"
},
"author": "zhengtengfei",
"files": [
"bin/",
"types/"
],
"types": "./types/index.d.ts",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.10",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"log4js": "^3.0.6",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"dependencies": {}
}