UNPKG

feathers-authentication-management

Version:

Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication

68 lines (67 loc) 2.12 kB
{ "name": "feathers-authentication-management", "description": "Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication ", "version": "3.1.0", "repository": { "type": "git", "url": "git://github.com/feathersjs-ecosystem/feathers-authentication-management.git" }, "license": "MIT", "bugs": { "url": "https://github.com/feathersjs-ecosystem/feathers-authentication-management/issues" }, "homepage": "https://github.com/feathersjs-ecosystem/feathers-authentication-management", "keywords": [ "feathers", "feathers-plugin", "hook", "hooks", "services", "authentication", "verification" ], "author": { "name": "John Szwaronek & contributors", "email": "johnsz9999@gmail.com" }, "engines": { "node": ">= 8.12.0" }, "main": "src/", "directories": { "src": "src" }, "scripts": { "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 -u feathersjs-ecosystem -p feathers-authentication-management && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "lint": "semistandard src/**/*.js --fix", "mocha": "mocha --opts mocha.opts", "coverage": "nyc npm run mocha", "test": "npm run lint && npm run coverage" }, "semistandard": { "env": [ "mocha" ] }, "dependencies": { "@feathersjs/authentication": "^4.3.0", "@feathersjs/authentication-local": "^4.3.0", "@feathersjs/errors": "^4.3.0", "bcryptjs": "^2.3.0", "debug": "^4.1.0", "feathers-hooks-common": "^5.0.3" }, "devDependencies": { "@feathersjs/feathers": "^4.3.0", "chai": "^4.2.0", "feathers-memory": "^4.0.0", "istanbul": "^1.1.0-alpha.1", "mocha": "^6.2.0", "nyc": "^15.0.1", "semistandard": "^11.0.0" } }