-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "node-ws-server",
"version": "0.0.1",
"author": "fengjie",
"description": "IM Server for Node.js",
"homepage": "https://github.com/stultuss/node-ws-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stultuss/node-ws-server.git"
},
"bugs": "https://github.com/stultuss/node-ws-server/issues",
"engines": {
"node": ">=8"
},
"main": "./build/index.js",
"scripts": {
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"start": "tsc && node ./build/index.js",
"client": "node ./build/client.js"
},
"license": "MIT",
"dependencies": {
"commander": "^6.2.0",
"etcd3": "^1.0.2",
"google-protobuf": "^3.5.0",
"grpc": "^1.16.0",
"mz": "^2.7.0",
"redis": "^3.0.2",
"request": "^2.88.2",
"underscore": "^1.12.0",
"winston": "^3.3.3",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/google-protobuf": "^3.2.7",
"@types/redis": "^2.8.28",
"@types/request": "^2.48.5",
"@types/underscore": "^1.10.24",
"@types/ws": "^7.4.0",
"typescript": "^4.1.2"
}
}