UNPKG

feathers-authentication-local

Version:
84 lines (83 loc) 2.56 kB
{ "name": "feathers-authentication-local", "description": "Local authentication strategy for feathers-authentication", "version": "0.4.4", "homepage": "https://github.com/feathersjs/feathers-authentication-local", "main": "lib/", "keywords": [ "feathers", "feathers-plugin" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs/feathers-authentication-local.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/feathers-authentication-local/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 node_modules/mocha/bin/_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": { "bcryptjs": "^2.3.0", "debug": "^3.0.0", "feathers-errors": "^2.4.0", "lodash.get": "^4.4.2", "lodash.merge": "^4.6.0", "lodash.omit": "^4.5.0", "lodash.pick": "^4.4.0", "passport-local": "^1.0.0" }, "devDependencies": { "babel-cli": "^6.16.0", "babel-core": "^6.17.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.16.0", "body-parser": "^1.15.2", "chai": "^4.0.2", "feathers": "^2.0.2", "feathers-authentication": "^1.0.0", "feathers-authentication-jwt": "^0.3.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", "mocha": "^3.1.2", "rimraf": "^2.5.4", "semistandard": "^11.0.0", "sinon": "^2.1.0", "sinon-chai": "^2.11.0" } }