mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
83 lines
2.0 KiB
JSON
83 lines
2.0 KiB
JSON
{
|
|
"name": "@thream/socketio-jwt",
|
|
"version": "0.0.0-development",
|
|
"description": "Authenticate socket.io incoming connections with JWTs.",
|
|
"license": "MIT",
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"keywords": [
|
|
"socket",
|
|
"socket.io",
|
|
"jwt"
|
|
],
|
|
"author": "Divlo <contact@divlo.fr>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Thream/socketio-jwt"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Thream/socketio-jwt/issues"
|
|
},
|
|
"homepage": "https://github.com/Thream/socketio-jwt#readme",
|
|
"ts-standard": {
|
|
"ignore": [
|
|
"build",
|
|
"coverage",
|
|
"node_modules"
|
|
],
|
|
"envs": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"report": "stylish"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf ./build && tsc",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
|
|
"lint:typescript": "ts-standard",
|
|
"release": "semantic-release",
|
|
"test": "jest",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"peerDependencies": {
|
|
"socket.io": ">=3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"jsonwebtoken": "8.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "15.0.0",
|
|
"@commitlint/config-conventional": "15.0.0",
|
|
"@types/express": "4.17.13",
|
|
"@types/jest": "27.0.3",
|
|
"@types/jsonwebtoken": "8.5.6",
|
|
"@types/node": "17.0.5",
|
|
"@types/server-destroy": "1.0.1",
|
|
"axios": "0.24.0",
|
|
"editorconfig-checker": "4.0.2",
|
|
"express": "4.17.2",
|
|
"husky": "7.0.4",
|
|
"jest": "27.4.5",
|
|
"markdownlint-cli": "0.30.0",
|
|
"pinst": "2.1.6",
|
|
"rimraf": "3.0.2",
|
|
"semantic-release": "18.0.1",
|
|
"server-destroy": "1.0.1",
|
|
"socket.io": "4.4.0",
|
|
"socket.io-client": "4.4.0",
|
|
"ts-jest": "27.1.2",
|
|
"ts-standard": "11.0.0",
|
|
"typescript": "4.5.2"
|
|
}
|
|
}
|