2012-09-05 20:14:36 +02:00
|
|
|
{
|
2014-01-13 20:00:21 +01:00
|
|
|
"name": "socketio-jwt",
|
2016-06-21 14:46:30 +02:00
|
|
|
"version": "4.5.0",
|
2014-01-13 20:00:21 +01:00
|
|
|
"description": "authenticate socket.io connections using JWTs",
|
2012-09-05 20:14:36 +02:00
|
|
|
"main": "lib/index.js",
|
2017-04-18 23:21:07 +02:00
|
|
|
"types": "./types/index.d.ts",
|
2012-09-05 20:14:36 +02:00
|
|
|
"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": {
|
2019-10-08 18:56:18 +02:00
|
|
|
"jsonwebtoken": "^8.3.0",
|
|
|
|
"xtend": "~2.1.2"
|
2012-11-16 16:43:12 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-07-24 16:03:10 +02:00
|
|
|
"@types/socket.io": "~1.4.29",
|
2017-04-18 23:26:47 +02:00
|
|
|
"body-parser": "~1.17.1",
|
|
|
|
"express": "~4.15.2",
|
|
|
|
"mocha": "~3.2.0",
|
|
|
|
"request": "~2.81.0",
|
|
|
|
"serve-static": "^1.12.1",
|
2015-08-31 16:04:04 +02:00
|
|
|
"server-destroy": "~1.0.1",
|
2017-04-18 23:26:47 +02:00
|
|
|
"should": "~11.2.1",
|
|
|
|
"socket.io": "^1.7.3",
|
|
|
|
"socket.io-client": "^1.7.3"
|
2012-09-05 20:14:36 +02:00
|
|
|
}
|
2019-10-08 18:56:18 +02:00
|
|
|
}
|