{
  "name": "feathers-authentication-jwt",
  "description": "JWT authentication strategy for feathers-authentication using Passport",
  "version": "0.3.2",
  "homepage": "https://github.com/feathersjs/feathers-authentication-jwt",
  "main": "lib/",
  "keywords": [
    "feathers",
    "feathers-plugin"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs/feathers-authentication-jwt.git"
  },
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/feathersjs/feathers-authentication-jwt/issues"
  },
  "engines": {
    "node": ">= 4.6.0"
  },
  "scripts": {
    "prepublish": "npm run compile",
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "compile": "rimraf lib/ && babel -d lib/ src/",
    "watch": "babel --watch -d lib/ src/",
    "lint": "semistandard src/**/*.js test/**/*.js --fix",
    "mocha": "mocha --opts mocha.opts",
    "coverage": "istanbul cover _mocha -- --opts mocha.opts",
    "test": "npm run compile && npm run lint && npm run coverage",
    "start": "npm run compile && node example/app"
  },
  "semistandard": {
    "sourceType": "module",
    "env": [
      "mocha"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "dependencies": {
    "debug": "^2.3.1",
    "feathers-errors": "^2.5.0",
    "lodash.merge": "^4.6.0",
    "lodash.omit": "^4.5.0",
    "lodash.pick": "^4.4.0",
    "passport-jwt": "^2.2.1"
  },
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-core": "^6.18.2",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.18.0",
    "body-parser": "^1.15.2",
    "chai": "^3.5.0",
    "feathers": "^2.0.2",
    "feathers-authentication": "^1.0.0",
    "feathers-hooks": "^2.0.0",
    "feathers-memory": "^1.1.0",
    "feathers-rest": "^1.5.2",
    "feathers-socketio": "^2.0.0",
    "istanbul": "^1.1.0-alpha.1",
    "jsonwebtoken": "^7.1.9",
    "mocha": "^3.1.2",
    "rimraf": "^2.5.4",
    "semistandard": "^11.0.0",
    "sinon": "^2.1.0",
    "sinon-chai": "^2.8.0"
  }
}
