2012-09-05 20:14:36 +02:00
|
|
|
{
|
2014-01-13 20:00:21 +01:00
|
|
|
"name": "socketio-jwt",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "authenticate socket.io connections using JWTs",
|
2012-09-05 20:14:36 +02:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"keywords": [
|
|
|
|
"socket",
|
|
|
|
"socket.io",
|
2014-01-13 20:00:21 +01:00
|
|
|
"jwt"
|
2012-09-05 20:14:36 +02:00
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "José F. Romaniello",
|
2014-01-13 20:00:21 +01:00
|
|
|
"email": "jfromaniello@gmail.com",
|
|
|
|
"url": "http://joseoncode.com"
|
2012-09-05 20:14:36 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2014-01-13 20:00:21 +01:00
|
|
|
"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": {
|
2014-01-13 20:00:21 +01:00
|
|
|
"jsonwebtoken": "~0.1.0",
|
2013-04-22 19:50:53 +02:00
|
|
|
"xtend": "~2.0.3"
|
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",
|
2014-01-13 20:00:21 +01:00
|
|
|
"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-13 20:00:21 +01:00
|
|
|
}
|