chore: basic structure of files to rewrite in TS
This commit is contained in:
parent
d5e0dcc69d
commit
748c61ed07
35
.gitignore
vendored
35
.gitignore
vendored
@ -1,2 +1,35 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules
|
||||||
|
.pnp
|
||||||
|
.pnp.js
|
||||||
|
.yarn
|
||||||
|
|
||||||
|
# production
|
||||||
|
build
|
||||||
|
|
||||||
|
# testing
|
||||||
|
coverage
|
||||||
|
|
||||||
|
# envs
|
||||||
|
.env
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# lockfiles
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|
||||||
|
# editors
|
||||||
|
.vscode
|
||||||
|
.theia
|
||||||
.idea
|
.idea
|
||||||
node_modules/*
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
1
example/.gitignore
vendored
1
example/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
node_modules
|
|
@ -1,3 +0,0 @@
|
|||||||
# Deprecation Notice
|
|
||||||
|
|
||||||
This sample has been deprecated. Please see the [auth0-samples](https://github.com/auth0-samples) org for the latest Auth0 samples.
|
|
62
package.json
62
package.json
@ -3,17 +3,28 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Authenticate socket.io incoming connections with JWTs.",
|
"description": "Authenticate socket.io incoming connections with JWTs.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "lib/index.js",
|
"main": "build/index.js",
|
||||||
"types": "./types/index.d.ts",
|
"types": "build/index.d.ts",
|
||||||
|
"files": [
|
||||||
|
"build/**/*"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">=12"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"socket",
|
"socket",
|
||||||
"socket.io",
|
"socket.io",
|
||||||
"jwt"
|
"jwt"
|
||||||
],
|
],
|
||||||
|
"author": "Divlo <contact@divlo.fr>",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/Thream/socketio-jwt"
|
"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",
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
||||||
@ -43,10 +54,33 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"jest": {
|
||||||
|
"preset": "ts-jest",
|
||||||
|
"testEnvironment": "node",
|
||||||
|
"rootDir": "./src",
|
||||||
|
"collectCoverage": true,
|
||||||
|
"coverageDirectory": "../coverage/"
|
||||||
|
},
|
||||||
|
"ts-standard": {
|
||||||
|
"files": [
|
||||||
|
"./src/**/*.ts"
|
||||||
|
],
|
||||||
|
"envs": [
|
||||||
|
"node",
|
||||||
|
"jest"
|
||||||
|
]
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha",
|
"build": "rimraf ./build && tsc",
|
||||||
"lint": "exit 0",
|
"lint": "ts-standard | snazzy",
|
||||||
"build": "exit 0"
|
"format": "ts-standard --fix | snazzy",
|
||||||
|
"release": "release-it",
|
||||||
|
"test": "jest",
|
||||||
|
"test:watchAll": "jest --watchAll",
|
||||||
|
"test:clearCache": "jest --clearCache"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"socket.io": "*"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jsonwebtoken": "8.5.1",
|
"jsonwebtoken": "8.5.1",
|
||||||
@ -56,17 +90,19 @@
|
|||||||
"@commitlint/cli": "11.0.0",
|
"@commitlint/cli": "11.0.0",
|
||||||
"@commitlint/config-conventional": "11.0.0",
|
"@commitlint/config-conventional": "11.0.0",
|
||||||
"@release-it/conventional-changelog": "2.0.0",
|
"@release-it/conventional-changelog": "2.0.0",
|
||||||
|
"@types/jest": "26.0.19",
|
||||||
|
"@types/node": "14.14.16",
|
||||||
"@types/socket.io": "2.1.12",
|
"@types/socket.io": "2.1.12",
|
||||||
"express": "4.17.1",
|
"express": "4.17.1",
|
||||||
"husky": "4.3.6",
|
"husky": "4.3.6",
|
||||||
"mocha": "3.2.0",
|
"jest": "26.6.3",
|
||||||
"q": "1.5.1",
|
|
||||||
"release-it": "14.2.2",
|
"release-it": "14.2.2",
|
||||||
"request": "2.88.2",
|
"rimraf": "3.0.2",
|
||||||
"serve-static": "1.14.1",
|
"snazzy": "9.0.0",
|
||||||
"server-destroy": "1.0.1",
|
"socket.io": "3.0.4",
|
||||||
"should": "13.2.3",
|
"socket.io-client": "3.0.4",
|
||||||
"socket.io": "2.3.0",
|
"ts-jest": "26.4.4",
|
||||||
"socket.io-client": "2.3.0"
|
"ts-standard": "10.0.0",
|
||||||
|
"typescript": "4.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3
src/index.ts
Normal file
3
src/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export const authorize = (options: any): any => {
|
||||||
|
return options
|
||||||
|
}
|
23
tsconfig.json
Normal file
23
tsconfig.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES2019",
|
||||||
|
"module": "commonjs",
|
||||||
|
"lib": ["ES2019"],
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"allowJs": false,
|
||||||
|
"checkJs": false,
|
||||||
|
"declaration": true,
|
||||||
|
"sourceMap": false,
|
||||||
|
"outDir": "./build",
|
||||||
|
"rootDir": "./src",
|
||||||
|
"removeComments": false,
|
||||||
|
"noEmitOnError": true,
|
||||||
|
"importHelpers": false,
|
||||||
|
"strict": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"emitDecoratorMetadata": true,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"incremental": false
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user