UNPKG

redux-saga-thunk

Version:

Dispatching an action handled by redux-saga returns promise

87 lines (86 loc) 2.29 kB
{ "name": "redux-saga-thunk", "version": "0.7.3", "description": "Dispatching an action handled by redux-saga returns promise", "license": "MIT", "repository": "diegohaz/redux-saga-thunk", "main": "index.js", "author": { "name": "Diego Haz", "email": "hazdiego@gmail.com", "url": "https://github.com/diegohaz" }, "engines": { "node": ">=6" }, "files": [ "dist", "index.js", "index.d.ts" ], "scripts": { "test": "jest", "coverage": "npm test -- --coverage", "postcoverage": "opn coverage/lcov-report/index.html", "lint": "eslint src test", "flow": "flow check", "docs": "documentation readme src --section=API", "clean": "rimraf dist", "prebuild": "npm run docs && npm run clean", "build": "babel src -d dist", "watch": "npm-watch", "patch": "npm version patch && npm publish", "minor": "npm version minor && npm publish", "major": "npm version major && npm publish", "prepublish": "npm run lint && npm test && npm run build", "postpublish": "git push origin master --follow-tags" }, "watch": { "test": "{src,test}/*.js", "lint": "{src,test}/*.js", "build": "src" }, "jest": { "testEnvironment": "node" }, "keywords": [ "redux-saga-thunk", "redux-saga", "redux", "async", "redux-thunk", "promise" ], "dependencies": { "lodash": "^4.17.4" }, "peerDependencies": { "redux": "*" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-eslint": "^8.2.1", "babel-jest": "^22.0.6", "babel-plugin-transform-flow-strip-types": "^6.21.0", "babel-preset-env": "^1.1.8", "babel-preset-stage-2": "^6.18.0", "documentation": "6.0.0", "eslint": "^4.0.0", "eslint-config-airbnb-base": "^12.1.0", "eslint-config-prettier": "^2.9.0", "eslint-plugin-flowtype": "^2.29.2", "eslint-plugin-flowtype-errors": "^3.0.0", "eslint-plugin-import": "^2.2.0", "eslint-plugin-prettier": "^2.6.0", "flow-bin": "^0.66.0", "flux-standard-action": "^2.0.1", "jest-cli": "^22.0.6", "npm-watch": "^0.3.0", "opn-cli": "^3.1.0", "prettier": "^1.11.1", "redux": "^3.6.0", "redux-mock-store": "^1.2.3", "redux-saga": "^0.16.0", "rimraf": "^2.6.1" } }