2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/package.json
Fabian Arndt 27c59c3b0f Fixed auth.required
Misc:
- Resolved conflicts
- Added test case, to fail if server grants prohibited admin access
- Simplified test logic
- Prevented usage of "var" (used const / let instead)
- Formatting
- Cleanup
- Typos
2019-10-13 15:52:14 +02:00

43 lines
935 B
JSON

{
"name": "socketio-jwt",
"version": "4.5.0",
"description": "authenticate socket.io connections using JWTs",
"main": "lib/index.js",
"types": "./types/index.d.ts",
"keywords": [
"socket",
"socket.io",
"jwt"
],
"author": {
"name": "José F. Romaniello",
"email": "jfromaniello@gmail.com",
"url": "http://joseoncode.com"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/socketio-jwt.git"
},
"scripts": {
"test": "mocha"
},
"license": "MIT",
"dependencies": {
"jsonwebtoken": "^8.3.0",
"xtend": "~2.1.2"
},
"devDependencies": {
"@types/socket.io": "~1.4.29",
"body-parser": "~1.17.1",
"express": "~4.15.2",
"mocha": "~3.2.0",
"request": "~2.81.0",
"serve-static": "^1.13.2",
"q": "^1.5.1",
"server-destroy": "~1.0.1",
"should": "~11.2.1",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
}
}