2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-12 22:00:11 +02:00
socketio-jwt/package.json

73 lines
1.5 KiB
JSON
Raw Normal View History

2012-09-05 20:14:36 +02:00
{
"name": "@thream/socketio-jwt",
"version": "0.0.1",
"description": "Authenticate socket.io incoming connections with JWTs.",
"license": "MIT",
2012-09-05 20:14:36 +02:00
"main": "lib/index.js",
"types": "./types/index.d.ts",
2012-09-05 20:14:36 +02:00
"keywords": [
"socket",
"socket.io",
"jwt"
2012-09-05 20:14:36 +02:00
],
"repository": {
"type": "git",
"url": "git+https://github.com/Thream/socketio-jwt"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": false
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"npm run lint",
"npm run test"
]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
2012-09-05 20:14:36 +02:00
},
2012-11-16 16:43:12 +01:00
"scripts": {
"test": "mocha",
2020-12-27 18:42:48 +01:00
"lint": "exit 0",
"build": "exit 0"
2012-11-16 16:43:12 +01:00
},
2012-09-05 20:14:36 +02:00
"dependencies": {
"jsonwebtoken": "8.5.1",
"xtend": "4.0.2"
2012-11-16 16:43:12 +01:00
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@release-it/conventional-changelog": "2.0.0",
2020-12-27 17:25:44 +01:00
"@types/socket.io": "2.1.12",
"express": "4.17.1",
"husky": "4.3.6",
2020-12-27 17:25:44 +01:00
"mocha": "3.2.0",
"q": "1.5.1",
"release-it": "14.2.2",
"request": "2.88.2",
"serve-static": "1.14.1",
2020-12-27 17:25:44 +01:00
"server-destroy": "1.0.1",
"should": "13.2.3",
2020-12-27 17:25:44 +01:00
"socket.io": "2.3.0",
"socket.io-client": "2.3.0"
2012-09-05 20:14:36 +02:00
}
}