2012-09-05 20:14:36 +02:00
|
|
|
{
|
2020-12-27 18:18:34 +01:00
|
|
|
"name": "@thream/socketio-jwt",
|
2021-07-23 23:15:52 +02:00
|
|
|
"version": "0.0.0-development",
|
2022-04-07 10:11:48 +02:00
|
|
|
"type": "module",
|
2022-02-18 17:20:59 +01:00
|
|
|
"public": true,
|
2020-12-27 18:18:34 +01:00
|
|
|
"description": "Authenticate socket.io incoming connections with JWTs.",
|
|
|
|
"license": "MIT",
|
2020-12-28 16:49:31 +01:00
|
|
|
"main": "build/index.js",
|
|
|
|
"types": "build/index.d.ts",
|
|
|
|
"files": [
|
2020-12-28 18:09:42 +01:00
|
|
|
"build"
|
2020-12-28 16:49:31 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
2022-04-07 10:11:48 +02:00
|
|
|
"node": ">=16.0.0"
|
2020-12-28 16:49:31 +01:00
|
|
|
},
|
2022-02-18 17:20:59 +01:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
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
|
|
|
],
|
2020-12-28 16:49:31 +01:00
|
|
|
"author": "Divlo <contact@divlo.fr>",
|
2012-09-05 20:14:36 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-02-18 17:20:59 +01:00
|
|
|
"url": "https://github.com/Thream/socketio-jwt"
|
2020-12-27 18:18:34 +01:00
|
|
|
},
|
2020-12-28 16:49:31 +01:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Thream/socketio-jwt/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Thream/socketio-jwt#readme",
|
2012-11-16 16:43:12 +01:00
|
|
|
"scripts": {
|
2022-02-18 17:20:59 +01:00
|
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
|
2022-04-07 10:11:48 +02:00
|
|
|
"build:dev": "swc ./src --out-dir ./build --watch",
|
2021-07-23 23:15:52 +02:00
|
|
|
"lint:commit": "commitlint",
|
2021-03-19 14:07:21 +01:00
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-02-18 17:20:59 +01:00
|
|
|
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
|
|
|
|
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
|
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
|
|
"lint:staged": "lint-staged",
|
2022-04-07 10:11:48 +02:00
|
|
|
"test": "c8 tap",
|
2022-02-18 17:20:59 +01:00
|
|
|
"release": "semantic-release",
|
2021-02-09 20:22:40 +01:00
|
|
|
"postinstall": "husky install",
|
|
|
|
"prepublishOnly": "pinst --disable",
|
|
|
|
"postpublish": "pinst --enable"
|
2020-12-28 16:49:31 +01:00
|
|
|
},
|
|
|
|
"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": {
|
2020-12-28 18:09:42 +01:00
|
|
|
"jsonwebtoken": "8.5.1"
|
2012-11-16 16:43:12 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-12 21:26:33 +02:00
|
|
|
"@commitlint/cli": "16.2.4",
|
|
|
|
"@commitlint/config-conventional": "16.2.4",
|
2022-04-07 10:11:48 +02:00
|
|
|
"@swc/cli": "0.1.57",
|
2022-05-12 21:26:33 +02:00
|
|
|
"@swc/core": "1.2.182",
|
2022-01-22 13:44:15 +01:00
|
|
|
"@types/jsonwebtoken": "8.5.8",
|
2022-05-12 21:26:33 +02:00
|
|
|
"@types/node": "17.0.32",
|
|
|
|
"@types/tap": "15.0.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.23.0",
|
|
|
|
"@typescript-eslint/parser": "5.23.0",
|
|
|
|
"axios": "0.27.2",
|
|
|
|
"c8": "7.11.2",
|
2021-04-01 13:24:04 +02:00
|
|
|
"editorconfig-checker": "4.0.2",
|
2022-05-12 21:26:33 +02:00
|
|
|
"eslint": "8.15.0",
|
2022-04-07 10:11:48 +02:00
|
|
|
"eslint-config-conventions": "2.0.0",
|
|
|
|
"eslint-config-prettier": "8.5.0",
|
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-02-18 17:20:59 +01:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2022-04-07 10:11:48 +02:00
|
|
|
"eslint-plugin-promise": "6.0.0",
|
|
|
|
"eslint-plugin-unicorn": "42.0.0",
|
2022-05-12 21:26:33 +02:00
|
|
|
"fastify": "3.29.0",
|
|
|
|
"husky": "8.0.1",
|
|
|
|
"lint-staged": "12.4.1",
|
2022-02-10 11:23:08 +01:00
|
|
|
"markdownlint-cli": "0.31.1",
|
2022-04-07 10:11:48 +02:00
|
|
|
"pinst": "3.0.0",
|
|
|
|
"prettier": "2.6.2",
|
2020-12-28 16:49:31 +01:00
|
|
|
"rimraf": "3.0.2",
|
2022-01-22 13:44:04 +01:00
|
|
|
"semantic-release": "19.0.2",
|
2022-05-12 21:26:33 +02:00
|
|
|
"socket.io": "4.5.0",
|
|
|
|
"socket.io-client": "4.5.0",
|
|
|
|
"tap": "16.2.0",
|
|
|
|
"typescript": "4.6.4"
|
2012-09-05 20:14:36 +02:00
|
|
|
}
|
2019-10-13 15:52:14 +02:00
|
|
|
}
|