marc1404/koa-login

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "koa-login",
  "version": "0.0.6",
  "description": "Koa login API using JWT",
  "main": "lib/koa-login.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/marc1404/koa-login.git"
  },
  "author": "Marc Vornetran",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/marc1404/koa-login/issues"
  },
  "homepage": "https://github.com/marc1404/koa-login#readme",
  "dependencies": {
    "bcrypt": "^0.8.5",
    "jsonwebtoken": "^5.4.0"
  },
  "devDependencies": {
    "istanbul": "^0.4.0",
    "mocha": "^2.3.3",
    "should": "^7.1.1"
  },
  "scripts": {
    "test": "node --harmony --harmony_arrow_functions node_modules/istanbul/lib/cli.js cover --hook-run-in-context --report lcovonly node_modules/mocha/bin/_mocha"
  },
  "engines": {
    "node": ">= 0.11.16",
    "iojs": ">= 1.0.0"
  },
  "keywords": [
    "koa",
    "auth",
    "middleware",
    "jwt",
    "token",
    "login"
  ]
}