forked from eggjs/egg-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.76 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
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
80
{
"name": "egg-socket.io",
"version": "4.1.5",
"description": "egg plugin for socket.io",
"eggPlugin": {
"name": "io",
"dependencies": [
"session"
]
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"socket.io",
"websocket"
],
"dependencies": {
"debug": "^4.1.0",
"delegates": "^1.0.0",
"is-type-of": "^1.2.1",
"koa-compose": "^4.1.0",
"socket.io": "^2.1.1",
"socket.io-redis": "^5.2.0"
},
"devDependencies": {
"@types/node": "^10.9.4",
"@types/socket.io": "^1.4.33",
"autod": "^3.0.1",
"egg": "^2.12.0",
"egg-bin": "^4.9.0",
"egg-ci": "^1.10.0",
"egg-mock": "^3.20.1",
"egg-redis": "^2.0.0",
"egg-session-redis": "^2.1.0",
"eslint": "^5.8.0",
"eslint-config-egg": "^7.1.0",
"pedding": "^1.1.0",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"socket.io-client": "^2.1.1",
"supertest": "^3.3.0",
"typescript": "^3.0.3",
"uws": "10.148.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/eggjs/egg-socket.io.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-socket.io#readme",
"author": "ngot <[email protected]>",
"license": "MIT"
}