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

39 lines
896 B
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "passport.socketio",
2013-06-04 20:21:26 +02:00
"version": "1.1.0",
2012-09-05 20:14:36 +02:00
"description": "access passport.js authenticated user information from socket.io",
"main": "lib/index.js",
"keywords": [
"socket",
"socket.io",
"passport"
],
"author": {
"name": "José F. Romaniello",
"email": "jfromaniello@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jfromaniello/passport.socketio.git"
},
2012-11-16 16:43:12 +01:00
"scripts": {
"test": "mocha"
},
2012-09-05 20:14:36 +02:00
"license": "MIT",
"dependencies": {
2013-04-22 19:50:53 +02:00
"passport": "~0.1.16",
"request": "~2.19.0",
"xtend": "~2.0.3"
2012-11-16 16:43:12 +01:00
},
"devDependencies": {
2013-04-23 05:34:36 +02:00
"should": "~1.2.2",
"mocha": "~1.9.0",
"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
}
2013-06-04 20:21:26 +02:00
}