dwyl/hapi-auth-jwt2-cookie-example

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hapi-auth-jwt2-example",
  "version": "7.1.3",
  "description": "A functional example Hapi.js app demonstrating hapi-auth-jwt2 authentication using Redis (hosted on Heroku) with tests!",
  "main": "index.js",
  "scripts": {
    "start": "node server.js",
    "quick": "./node_modules/tape/bin/tape ./test/test.js",
    "test": "istanbul cover ./node_modules/tape/bin/tape ./test/test.js  | node_modules/tap-spec/bin/cmd.js",
    "coverage": "istanbul cover ./node_modules/tape/bin/tape ./test/test.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "report": "open coverage/lcov-report/index.html"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/hapi-auth-jwt2-cookie-example.git"
  },
  "keywords": [
    "hapi.js",
    "authentication",
    "auth",
    "example",
    "hapi-auth-jwt2"
  ],
  "author": "nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/dwyl/hapi-auth-jwt2-cookie-example/issues"
  },
  "homepage": "https://github.com/dwyl/hapi-auth-jwt2-cookie-example",
  "dependencies": {
    "aguid": "^1.0.3",
    "env2": "^2.1.1",
    "hapi": "^15.0.3",
    "hapi-auth-jwt2": "^7.1.3",
    "hapi-redis-connection": "^1.0.1",
    "jsonwebtoken": "^7.1.9",
    "redis": "^2.6.2"
  },
  "devDependencies": {
    "istanbul": "^0.4.5",
    "pre-commit": "^1.1.3",
    "tap-spec": "^4.1.1",
    "tape": "^4.6.0"
  },
  "pre-commit": [
    "coverage"
  ]
}