Files
Guardian/package.json
T
2024-02-03 11:48:41 +01:00

38 lines
814 B
JSON

{
"name": "auth-guardian",
"version": "2.1.0",
"description": "auth-guardian a library for enhancing application security",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/kajvan/guardian"
},
"keywords": [
"security",
"authentication",
"password",
"jwt",
"rate limiting"
],
"author": "kaj van schalkwijk",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}