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

115 lines
2.5 KiB
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "@thream/socketio-jwt",
2021-03-08 14:37:14 +01:00
"version": "2.1.0",
"description": "Authenticate socket.io incoming connections with JWTs.",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=12"
},
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",
"release-it": {
"git": {
"commit": false,
"push": false,
"tag": false
},
"github": {
"release": false
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"npm run lint",
"npm run markdownlint",
"npm run build",
"npm run test"
]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
2012-09-05 20:14:36 +02:00
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
2020-12-29 04:05:39 +01:00
"rootDir": "./src",
"collectCoverage": true,
"coverageDirectory": "../coverage/"
},
"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",
"markdownlint": "markdownlint '**/*.md' --dot --ignore node_modules",
2021-03-08 14:33:53 +01:00
"lint": "ts-standard",
"release": "release-it",
"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": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@release-it/conventional-changelog": "2.0.1",
"@types/express": "4.17.11",
2021-01-07 14:30:37 +01:00
"@types/jest": "26.0.20",
"@types/jsonwebtoken": "8.5.0",
"@types/node": "14.14.33",
2020-12-28 23:51:03 +01:00
"@types/server-destroy": "1.0.1",
"axios": "0.21.1",
2020-12-27 17:25:44 +01:00
"express": "4.17.1",
"husky": "5.1.3",
"jest": "26.6.3",
"markdownlint-cli": "0.27.1",
"pinst": "2.1.6",
"release-it": "14.4.1",
"rimraf": "3.0.2",
2020-12-28 23:51:03 +01:00
"server-destroy": "1.0.1",
"socket.io": "3.1.2",
"socket.io-client": "3.1.2",
"ts-jest": "26.5.3",
"ts-standard": "10.0.0",
"typescript": "4.2.3"
2012-09-05 20:14:36 +02:00
}
}