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

83 lines
2.0 KiB
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "@thream/socketio-jwt",
2021-07-23 23:15:52 +02:00
"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"
},
2012-09-05 20:14:36 +02:00
"keywords": [
"socket",
"socket.io",
"jwt"
2012-09-05 20:14:36 +02:00
],
"author": "Divlo <contact@divlo.fr>",
2012-09-05 20:14:36 +02:00
"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": {
2021-03-08 14:33:53 +01:00
"ignore": [
"build",
"coverage",
"node_modules"
],
"envs": [
"node",
"jest"
2021-03-08 14:33:53 +01:00
],
"report": "stylish"
},
2012-11-16 16:43:12 +01:00
"scripts": {
"build": "rimraf ./build && tsc",
2021-07-23 23:15:52 +02:00
"lint:commit": "commitlint",
2021-03-19 14:07:21 +01:00
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
2021-07-23 23:15:52 +02:00
"lint:typescript": "ts-standard",
"release": "semantic-release",
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {
2021-01-07 14:30:37 +01:00
"socket.io": ">=3.0.0"
2012-11-16 16:43:12 +01:00
},
2012-09-05 20:14:36 +02:00
"dependencies": {
"jsonwebtoken": "8.5.1"
2012-11-16 16:43:12 +01:00
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@types/express": "4.17.13",
"@types/jest": "27.4.0",
"@types/jsonwebtoken": "8.5.7",
"@types/node": "17.0.8",
2020-12-28 23:51:03 +01:00
"@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.7",
"markdownlint-cli": "0.30.0",
"pinst": "2.1.6",
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
2020-12-28 23:51:03 +01:00
"server-destroy": "1.0.1",
"socket.io": "4.4.1",
"socket.io-client": "4.4.1",
"ts-jest": "27.1.3",
"ts-standard": "11.0.0",
"typescript": "4.5.4"
2012-09-05 20:14:36 +02:00
}
}