2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/package.json

40 lines
895 B
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "socketio-jwt",
2014-06-03 13:12:11 +02:00
"version": "2.1.0",
"description": "authenticate socket.io connections using JWTs",
2012-09-05 20:14:36 +02:00
"main": "lib/index.js",
"keywords": [
"socket",
"socket.io",
"jwt"
2012-09-05 20:14:36 +02:00
],
"author": {
"name": "José F. Romaniello",
"email": "jfromaniello@gmail.com",
"url": "http://joseoncode.com"
2012-09-05 20:14:36 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/socketio-jwt.git"
2012-09-05 20:14:36 +02:00
},
2012-11-16 16:43:12 +01:00
"scripts": {
"test": "mocha"
},
2012-09-05 20:14:36 +02:00
"license": "MIT",
"dependencies": {
"jsonwebtoken": "~0.1.0",
"xtend": "~2.1.2"
2012-11-16 16:43:12 +01:00
},
"devDependencies": {
2014-01-13 16:02:45 +01:00
"request": "~2.19.0",
2013-04-23 05:34:36 +02:00
"should": "~1.2.2",
"mocha": "~1.17.0",
2013-04-23 05:34:36 +02:00
"express": "~3.1.2",
"socket.io": "~0.9.14",
2012-11-16 16:43:12 +01:00
"passport-local": "~0.1.6",
2012-12-28 22:11:19 +01:00
"xmlhttprequest": "~1.5.0",
2013-06-05 13:38:33 +02:00
"socket.io-client": "git+https://github.com/jfromaniello/socket.io-client.git",
"connect": "~2.7.11"
2012-09-05 20:14:36 +02:00
}
2014-01-14 12:30:55 +01:00
}