feathersjs/feathers-authentication-oauth1

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@feathersjs/authentication-oauth1",
  "description": "A Feathers OAuth1 authentication strategy",
  "version": "1.0.3",
  "homepage": "https://github.com/feathersjs/authentication-oauth1",
  "main": "lib/",
  "keywords": [
    "feathers",
    "feathers-plugin"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs/authentication-oauth1.git"
  },
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/feathersjs/authentication-oauth1/issues"
  },
  "engines": {
    "node": ">= 6"
  },
  "scripts": {
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "release:pre": "npm version prerelease && npm publish --tag pre --access public",
    "release:patch": "npm version patch && npm publish --access public",
    "release:minor": "npm version minor && npm publish --access public",
    "release:major": "npm version major && npm publish --access public",
    "changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "lint": "semistandard --fix",
    "mocha": "mocha --opts mocha.opts",
    "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
    "test": "npm run lint && npm run coverage"
  },
  "semistandard": {
    "sourceType": "module",
    "env": [
      "mocha"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "dependencies": {
    "@feathersjs/commons": "^2.0.0",
    "@feathersjs/errors": "^3.0.0",
    "debug": "^3.1.0",
    "lodash.merge": "^4.6.0"
  },
  "devDependencies": {
    "@feathersjs/authentication": "^2.0.0",
    "@feathersjs/express": "^1.0.0",
    "@feathersjs/feathers": "^3.0.0",
    "body-parser": "^1.15.2",
    "chai": "^4.0.2",
    "express-session": "^1.14.2",
    "feathers-memory": "^2.0.0",
    "istanbul": "^1.1.0-alpha.1",
    "mocha": "^5.0.0",
    "passport-strategy": "^1.0.0",
    "passport-twitter": "^1.0.4",
    "semistandard": "^12.0.0",
    "sinon": "^6.0.0",
    "sinon-chai": "^3.0.0"
  }
}