forked from eggjs/egg-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.76 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@bonetm/egg-socket.io",
"version": "4.2.7",
"description": "egg plugin for socket.io",
"eggPlugin": {
"name": "io",
"dependencies": [
"session"
]
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"socket.io",
"websocket"
],
"dependencies": {
"delegates": "^1.0.0",
"is-type-of": "^1.2.1",
"koa-compose": "^4.1.0",
"socket.io": "^3.0.4",
"socket.io-redis": "^6.0.1"
},
"devDependencies": {
"@types/node": "^14.14.14",
"@types/socket.io": "^2.1.12",
"autod": "^3.1.1",
"egg": "^2.29.1",
"egg-bin": "^4.15.0",
"egg-ci": "^1.18.0",
"egg-mock": "^4.0.1",
"egg-redis": "^2.4.0",
"egg-session-redis": "^2.1.0",
"eslint": "^7.16.0",
"eslint-config-egg": "^9.0.0",
"pedding": "^1.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.4",
"socket.io-client": "^3.0.4",
"supertest": "^6.0.1",
"typescript": "^4.1.3",
"uws": "^200.0.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"autod": "autod"
},
"files": [
"app",
"lib",
"config",
"app.js",
"index.d.ts"
],
"ci": {
"version": "8, 10",
"license": true,
"services": "redis-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoneTM/egg-socket.io"
},
"bugs": {
"url": "https://github.com/BoneTM/egg-socket.io/issues"
},
"homepage": "https://github.com/BoneTM/egg-socket.io#readme",
"author": "Bone, ngot <zhuanghengfei@gmail.com>",
"license": "MIT"
}