forked from nvdnkpr/socketio-jwt
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 935 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
{
"name": "socketio-jwt",
"version": "5.0.0",
"description": "authenticate socket.io connections using JWTs",
"main": "lib/index.js",
"types": "./types/index.d.ts",
"keywords": [
"socket",
"socket.io",
"jwt"
],
"author": {
"name": "José F. Romaniello",
"email": "[email protected]",
"url": "http://joseoncode.com"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/socketio-jwt.git"
},
"scripts": {
"test": "mocha"
},
"license": "MIT",
"dependencies": {
"@types/socket.io": "~1.4.29",
"jsonwebtoken": "^7.3.0",
"xtend": "~4.0.1"
},
"devDependencies": {
"body-parser": "~1.17.1",
"express": "~4.15.2",
"mocha": "~3.2.0",
"request": "~2.81.0",
"serve-static": "^1.12.1",
"q": "^1.4.1",
"server-destroy": "~1.0.1",
"should": "~11.2.1",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
}
}