UNPKG

feathers-service-verify-reset

Version:

Adds user email verification and password reset capabilities to local feathers-authentication

79 lines (78 loc) 2.65 kB
{ "name": "feathers-service-verify-reset", "version": "1.0.6", "description": "Adds user email verification and password reset capabilities to local feathers-authentication", "main": "lib/", "directories": { "lib": "lib" }, "scripts": { "copy": "rm -rf lib/ && cp -r src/ lib/", "babel": "babel src/ --out-dir lib --presets babel-preset-es2015", "babel:watch": "babel src/ --watch --out-dir lib --presets babel-preset-es2015", "mocha": "mocha test/ --reporter spec --compilers js:babel-core/register", "mocha:only": "mocha test/ --reporter spec", "eslint": "eslint src/. test/. --ext .js,.jsx .", "build": "npm run copy && npm run babel", "test": "npm run build && npm run eslint && npm run mocha", "test:build": "npm run build && npm run mocha", "test:only": "npm run mocha:only", "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter spec test/*", "watch": "npm run copy && npm run babel:watch", "git:push": "npm run build && git push origin && git push origin --tags", "npm:patch": "npm version patch && npm publish", "npm:minor": "npm version minor && npm publish", "npm:major": "npm version major && npm publish", "npm:updates": "npm-check-updates" }, "repository": { "type": "git", "url": "git+https://github.com/eddyystop/feathers-service-verify-reset.git" }, "keywords": [ "feathers", "feathersjs", "hook", "hooks", "services", "authentication", "verification" ], "author": "John Szwaronek <johnsz9999@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/eddyystop/feathers-service-verify-reset/issues" }, "homepage": "https://github.com/eddyystop/feathers-service-verify-reset#readme", "dependencies": { "bcryptjs": "^2.3.0", "crypto": "^0.0.3", "debug": "^2.2.0", "feathers-authentication": "^0.7.11", "feathers-errors": "^2.4.0", "feathers-hooks-common": "^1.7.2", "object.assign": "^4.0.4" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.18.0", "babel-eslint": "^7.0.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.18.0", "chai": "^3.5.0", "coveralls": "^2.11.14", "eslint": "^3.8.1", "eslint-config-airbnb": "^12.0.0", "eslint-plugin-import": "^2.0.1", "eslint-plugin-jsdoc": "^2.3.1", "eslint-plugin-jsx-a11y": "^2.2.3", "eslint-plugin-react": "^6.4.1", "istanbul": "^0.4.4", "mocha": "^3.1.2", "sift": "crcn/sift.js" }, "engines": { "node": ">=5.0.0", "npm": ">=3.8.0" } }