-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 960 Bytes
/
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": "sockpress",
"version": "1.4.1",
"description": "A simple express.js and socket.io wrapper",
"main": "lib/main.js",
"module": "lib/index.js",
"scripts": {
"test": "mocha -r esm -t 5000 -R dot -b"
},
"repository": {
"type": "git",
"url": "https://github.com/Lesterpig/sockpress.git"
},
"keywords": [
"socket.io",
"socketio",
"express",
"expressjs",
"wrapper"
],
"author": "Lesterpig",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lesterpig/sockpress/issues"
},
"homepage": "https://github.com/Lesterpig/sockpress",
"standard": {
"globals": ["it", "describe", "beforeEach", "afterEach"]
},
"dependencies": {
"cookie": "0.4.0",
"cookie-parser": "1.4.4",
"esm": "3",
"express": "4",
"express-session": "1.16.2",
"socket.io": "2"
},
"devDependencies": {
"mocha": "5.2.0",
"request": "2.88.0",
"socket.io-client": "2.2.0"
}
}