UNPKG

njwt

Version:

JWT Library for Node.js

64 lines (63 loc) 1.72 kB
{ "name": "njwt", "version": "2.0.1", "description": "JWT Library for Node.js", "engines": { "node": ">=12.0" }, "files": ["index.js","index.d.ts","properties.json","CHANGELOG.md","README.md","test"], "main": "index.js", "types": "index.d.ts", "scripts": { "lint": "eslint .", "test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly test/ -- -R spec --no-timeouts", "test-watch": "mocha --timeout=5000 --reporter dot --check-leaks -w ./*.js test/ ", "test-debug": "mocha --timeout=5000 --debug --reporter dot --check-leaks -w ./*.js test/ ", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout=5000 --reporter dot --check-leaks test/", "test-types": "tsd" }, "repository": { "type": "git", "url": "https://github.com/jwtk/njwt" }, "keywords": [ "jwt" ], "author": "Stormpath, Inc.", "license": "Apache-2.0", "bugs": { "url": "https://github.com/jwtk/njwt/issues" }, "homepage": "https://github.com/jwtk/njwt", "dependencies": { "@types/node": "^15.0.1", "ecdsa-sig-formatter": "^1.0.5", "uuid": "^8.3.2" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "chai": "^4.2.0", "coveralls": "^3.0.3", "eslint": "^7.25.0", "istanbul": "^0.4.5", "jsonwebtoken": "^9.0.0", "jwt-simple": "^0.5.5", "mocha": "^10.2.0", "secure-random": "^1.1.1", "tsd": "^0.25.0", "typescript": "^4.2.4" }, "tsd": { "directory": "test/types", "compilerOptions": { "strict": true, "baseUrl": "./", "paths": { "njwt": [ "." ] } } } }