-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.08 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
{
"name": "socket.io-backlog",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/edasarl/socket.io-backlog.git"
},
"description": "socket.io adapter to store and send previous messages upon connection",
"main": "src/backlog.js",
"scripts": {
"test": "mocha"
},
"mocha": {
"exit": true
},
"contributors": [
{
"name": "Jérémy Lal",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"socket.io-adapter": "^2.3.2"
},
"devDependencies": {
"@kapouer/eslint-config": "^1.5.1",
"express": "^4.17.1",
"mocha": "^9.1.1",
"should": "^13.2.3",
"socket.io": "^4.2.0",
"socket.io-adapter": "2.3.2",
"socket.io-client": "^4.2.0"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"src/**.js"
],
"env": {
"node": true
}
},
{
"files": [
"test/*.js"
],
"env": {
"mocha": true
}
}
]
}
}