UNPKG

auth-nexus

Version:

A comprehensive authentication package for Node.js applications with MongoDB, JWT, email verification, and webhook support

42 lines (41 loc) 1.18 kB
{ "name": "auth-nexus", "version": "1.0.2", "description": "A comprehensive authentication package for Node.js applications with MongoDB, JWT, email verification, and webhook support", "main": "src/index.js", "types": "src/index.d.ts", "scripts": { "start": "node examples/basic-usage.js", "test": "jest", "build": "tsc", "prepublishOnly": "npm test" }, "keywords": ["authentication", "auth", "jwt", "mongodb", "mongoose", "email-verification", "webhooks", "nodejs"], "author": "Your Name <your.email@example.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Ali-muhammed7040/auth-nexus-package" }, "dependencies": { "bcryptjs": "^2.4.3", "dotenv": "^16.3.1", "express": "^4.18.2", "jsonwebtoken": "^9.0.2", "mongoose": "^7.5.0", "nodemailer": "^6.9.4", "axios": "^1.5.0" }, "devDependencies": { "@types/bcryptjs": "^2.4.2", "@types/express": "^4.17.17", "@types/jsonwebtoken": "^9.0.2", "@types/nodemailer": "^6.4.9", "jest": "^29.6.4", "supertest": "^6.3.3", "typescript": "^5.2.2" }, "engines": { "node": ">=14.0.0" } }