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": [
|
2023-07-02 18:12:07 +02:00
|
|
|
"build",
|
|
|
|
"!**/*.test.js",
|
2023-07-22 12:18:28 +02:00
|
|
|
"!**/*.test.d.ts",
|
|
|
|
"!**/*.map"
|
2020-12-28 16:49:31 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
2023-05-13 19:34:01 +02:00
|
|
|
"node": ">=16.0.0",
|
|
|
|
"npm": ">=9.0.0"
|
2020-12-28 16:49:31 +01:00
|
|
|
},
|
2022-02-18 17:20:59 +01:00
|
|
|
"publishConfig": {
|
2023-05-13 19:34:01 +02:00
|
|
|
"access": "public",
|
|
|
|
"provenance": true
|
2022-02-18 17:20:59 +01:00
|
|
|
},
|
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
|
|
|
],
|
2023-07-02 18:08:35 +02:00
|
|
|
"author": "Théo LUDWIG <contact@theoludwig.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": {
|
2023-01-10 20:57:23 +01:00
|
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build",
|
2022-04-07 10:11:48 +02:00
|
|
|
"build:dev": "swc ./src --out-dir ./build --watch",
|
2023-01-10 20:57:23 +01:00
|
|
|
"build:typescript": "tsc",
|
2021-07-23 23:15:52 +02:00
|
|
|
"lint:commit": "commitlint",
|
2021-03-19 14:07:21 +01:00
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-09-09 11:39:27 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-07-22 12:20:18 +02:00
|
|
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
|
|
|
"lint:prettier": "prettier . --check",
|
2022-02-18 17:20:59 +01:00
|
|
|
"lint:staged": "lint-staged",
|
2023-07-22 12:18:28 +02:00
|
|
|
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
|
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": {
|
2023-09-18 21:45:05 +02:00
|
|
|
"jsonwebtoken": "9.0.2"
|
2012-11-16 16:43:12 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-23 23:44:50 +02:00
|
|
|
"@commitlint/cli": "18.0.0",
|
|
|
|
"@commitlint/config-conventional": "18.0.0",
|
2023-04-02 23:04:41 +02:00
|
|
|
"@swc/cli": "0.1.62",
|
2023-10-23 23:44:50 +02:00
|
|
|
"@swc/core": "1.3.94",
|
2023-09-18 21:45:05 +02:00
|
|
|
"@tsconfig/strictest": "2.0.2",
|
2023-10-23 23:44:50 +02:00
|
|
|
"@types/jsonwebtoken": "9.0.4",
|
|
|
|
"@types/node": "20.8.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "6.9.0",
|
|
|
|
"@typescript-eslint/parser": "6.9.0",
|
|
|
|
"axios": "1.5.1",
|
2023-07-22 12:18:28 +02:00
|
|
|
"cross-env": "7.0.3",
|
2023-07-02 18:05:47 +02:00
|
|
|
"editorconfig-checker": "5.1.1",
|
2023-10-23 23:44:50 +02:00
|
|
|
"eslint": "8.52.0",
|
|
|
|
"eslint-config-conventions": "12.0.0",
|
2023-09-18 21:45:05 +02:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-10-23 23:44:50 +02:00
|
|
|
"eslint-plugin-import": "2.29.0",
|
|
|
|
"eslint-plugin-prettier": "5.0.1",
|
2023-01-10 20:57:23 +01:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-09-18 21:45:05 +02:00
|
|
|
"eslint-plugin-unicorn": "48.0.1",
|
2023-10-23 23:44:50 +02:00
|
|
|
"fastify": "4.24.3",
|
2023-01-10 20:57:23 +01:00
|
|
|
"husky": "8.0.3",
|
2023-10-23 23:44:50 +02:00
|
|
|
"lint-staged": "15.0.2",
|
2023-09-18 21:45:05 +02:00
|
|
|
"markdownlint-cli2": "0.10.0",
|
2023-07-02 18:05:47 +02:00
|
|
|
"markdownlint-rule-relative-links": "2.1.0",
|
2022-04-07 10:11:48 +02:00
|
|
|
"pinst": "3.0.0",
|
2023-09-18 21:45:05 +02:00
|
|
|
"prettier": "3.0.3",
|
2023-10-23 23:44:50 +02:00
|
|
|
"rimraf": "5.0.5",
|
|
|
|
"semantic-release": "22.0.5",
|
2023-09-18 21:45:05 +02:00
|
|
|
"socket.io": "4.7.2",
|
|
|
|
"socket.io-client": "4.7.2",
|
|
|
|
"typescript": "5.2.2"
|
2012-09-05 20:14:36 +02:00
|
|
|
}
|
2019-10-13 15:52:14 +02:00
|
|
|
}
|