-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
{
"name": "network-node-server",
"version": "1.0.8",
"description": "简易版的分布式消息服务器,将消息同步到所有网络节点和一个简易版的分布式任务调度",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "rm -fr ./dist & tsc --outDir ./dist",
"types": "rm -fr ./types & tsc -d --emitDeclarationOnly --allowJs false --declarationDir ./types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mytwz/network-node-server.git"
},
"keywords": [
"websocket",
"ssocket",
"socket",
"分布式",
"时间调度器",
"分布式任务",
"分布式调度",
"分布式集群",
"分布式消息",
"消息",
"消息管理",
"消息推送",
"任务",
"调度器",
"集群",
"distributed",
"scheduler"
],
"author": "Summer.li",
"license": "ISC",
"bugs": {
"url": "https://github.com/mytwz/network-node-server/issues"
},
"homepage": "https://github.com/mytwz/network-node-server#readme",
"devDependencies": {
"@types/buffer-xor": "^2.0.0",
"@types/cron": "^1.7.2",
"@types/ioredis": "^4.22.0",
"@types/node": "^14.14.22",
"@types/request": "^2.48.5",
"@types/ws": "^7.4.0",
"typescript": "^4.1.3"
},
"dependencies": {
"buffer-xor": "^2.0.2",
"cron": "^1.8.2",
"ioredis": "^4.23.0",
"request": "^2.88.2",
"ws": "^7.4.2"
},
"types": "./types/index.d.ts"
}