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

41 lines
879 B
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "socketio-jwt",
2016-06-21 14:46:30 +02:00
"version": "4.5.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": {
2015-04-22 16:30:01 +02:00
"jsonwebtoken": "^5.0.0",
"xtend": "~2.1.2"
2012-11-16 16:43:12 +01:00
},
"devDependencies": {
2015-08-31 16:08:31 +02:00
"body-parser": "~1.13.3",
"express": "~4.10.6",
"mocha": "~1.17.0",
2012-11-16 16:43:12 +01:00
"passport-local": "~0.1.6",
"request": "~2.19.0",
2015-08-31 16:08:31 +02:00
"serve-static": "^1.7.1",
2015-08-31 16:04:04 +02:00
"server-destroy": "~1.0.1",
"should": "~1.2.2",
"socket.io": "^1.0.4",
"socket.io-client": "^1.0.4"
2012-09-05 20:14:36 +02:00
}
2014-01-14 12:30:55 +01:00
}