-
Notifications
You must be signed in to change notification settings - Fork 202
/
package.json
39 lines (39 loc) · 895 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
{
"name": "socketio-jwt",
"version": "2.0.0",
"description": "authenticate socket.io connections using JWTs",
"main": "lib/index.js",
"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": {
"jsonwebtoken": "~0.1.0",
"xtend": "~2.0.3"
},
"devDependencies": {
"request": "~2.19.0",
"should": "~1.2.2",
"mocha": "~1.17.0",
"express": "~3.1.2",
"socket.io": "~0.9.14",
"passport-local": "~0.1.6",
"xmlhttprequest": "~1.5.0",
"socket.io-client": "git+https://github.com/jfromaniello/socket.io-client.git",
"connect": "~2.7.11"
}
}