Amri91/authomatic

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "authomatic",
  "version": "1.0.2",
  "description": "An authentication library that uses JWT for access and refresh tokens with sensible defaults.",
  "main": "index.js",
  "scripts": {
    "test": "npm run test:lint && npm run test:coverage",
    "test:coverage": "jest tests -i --coverage",
    "test:lint": "eslint tests index.js",
    "docs": "jsdoc2md -t jsdoc2md/readme.hbs index.js > README.md",
    "redis": "npm run redis:remove && npm run redis:start",
    "redis:start": "docker run --name redis-test -p 6379:6379 -d redis",
    "redis:remove": "docker rm -f redis-test &> /dev/null || true"
  },
  "repository": "https://github.com/amri91/authomatic",
  "author": "Abdulrahman Amri",
  "license": "MIT",
  "engines": {
    "node": ">=10.x"
  },
  "dependencies": {
    "jsonwebtoken": "^8.5.1",
    "standard-error": "^1.1.0",
    "tcomb": "^3.2.29"
  },
  "devDependencies": {
    "authomatic-redis": "^1.0.1",
    "coveralls": "^3.1.1",
    "eslint-config-warp": "^6.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint": "^7.12.1",
    "jest": "^27.5.0",
    "jsdoc-to-markdown": "^7.1.1",
    "koa": "^2.13.4",
    "koa-bodyparser": "^4.3.0",
    "koa-router": "^10.1.1",
    "ramda": "^0.28.0",
    "redis": "^3.1.1",
    "redisscan": "^2.0.0",
    "supertest": "^6.2.2"
  },
  "keywords": [
    "authentication",
    "jwt",
    "refresh-token",
    "security"
  ]
}