ysd-jwt
Version:
A secure and easy-to-use JWT library for Node.js and TypeScript.
60 lines (59 loc) • 1.51 kB
JSON
{
"name": "ysd-jwt",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint src --ext .ts eslint.config.js jest.config.js",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/yashdeore69/ysd-jwt.git"
},
"keywords": [
"jwt",
"authentication",
"express-middleware",
"token",
"secure-auth",
"cookie",
"header",
"ysd"
],
"author": "Yash Sunil Deore <deoreyash2003@gmail.com>",
"license": "MIT",
"description": "A secure and easy-to-use JWT library for Node.js and TypeScript.",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"express": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}