UNPKG

jwts

Version:

Simple JWT creation and verification package with build in Asymmetric key generation and use build on top of the jsonwebtoken package.

51 lines (50 loc) 1.31 kB
{ "name": "jwts", "version": "2.0.0", "description": "Simple JWT creation and verification package with build in Asymmetric key generation and use build on top of the jsonwebtoken package.", "main": "./src/index.js", "files": [ "/src" ], "scripts": { "test": "npx mocha", "dev-test": "npx nodemon -x mocha", "lint": "npx eslint --ignore-path .gitignore --fix **/*.js" }, "repository": { "type": "git", "url": "git+https://github.com/Jaimeloeuf/jwts.git" }, "bugs": { "url": "https://github.com/Jaimeloeuf/jwts/issues" }, "homepage": "https://github.com/Jaimeloeuf/jwts#readme", "keywords": [ "JWT", "JWE", "jwts", "JWTs", "simple", "asymmetric" ], "author": { "name": "Jaime Loeuf", "email": "jaimeloeuf@gmail.com", "url": "https://jaimeloeuf.github.io/" }, "license": "MIT", "dependencies": { "jsonwebtoken": "^8.5.1" }, "devDependencies": { "eslint": "^6.8.0", "eslint-config-standard": "^14.1.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-mocha": "^6.3.0", "eslint-plugin-node": "^11.0.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "mocha": "^6.2.0", "nodemon": "^1.19.1" } }