UNPKG

feathers-reduxify-authentication

Version:

Wrap feathers.authentication so it works transparently with Redux, as well as authentication, authorization packages for React-Router.

80 lines (79 loc) 2.82 kB
{ "name": "feathers-reduxify-authentication", "version": "0.0.2", "description": "Wrap feathers.authentication so it works transparently with Redux, as well as authentication, authorization packages for React-Router.", "files": [ "index.js", "test" ], "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-preset-stage-0", "babel:watch": "babel src/ --watch --out-dir lib --presets babel-preset-es2015,babel-preset-stage-0", "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 eslint && 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-reduxify-authentication.git" }, "keywords": [ "feathers", "feathersjs", "authentication", "react-router", "redux" ], "author": "John Szwaronek <johnsz9999@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/eddyystop/feathers-reduxify-authentication/issues" }, "homepage": "https://github.com/eddyystop/feathers-reduxify-authentication#readme", "dependencies": { "debug": "^2.2.0", "object.assign": "^4.0.4" }, "devDependencies": { "babel-cli": "^6.14.0", "babel-core": "^6.14.0", "babel-eslint": "^6.1.2", "babel-loader": "^6.2.5", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-transform-es2015-destructuring": "^6.9.0", "babel-plugin-transform-object-rest-spread": "^6.8.0", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-es2015": "^6.14.0", "babel-preset-stage-0": "^6.5.0", "chai": "^3.5.0", "coveralls": "^2.11.12", "eslint": "^3.5.0", "eslint-config-airbnb": "^10.0.0", "eslint-plugin-import": "^1.15.0", "eslint-plugin-jsdoc": "^2.3.1", "eslint-plugin-jsx-a11y": "^2.2.2", "eslint-plugin-react": "^6.2.1", "istanbul": "^0.4.5", "mocha": "^3.0.2" }, "engines": { "node": ">=5.0.0", "npm": ">=3.8.0" } }