UNPKG

redux-thunk-catch

Version:

Thunk middleware alternative for Redux, with error handling support.

89 lines (88 loc) 3.26 kB
{ "name": "redux-thunk-catch", "version": "1.0.0", "description": "Thunk middleware alternative for Redux, with error handling support.", "main": "lib/index.js", "jsnext:main": "es/index.js", "typings": "./index.d.ts", "files": [ "lib", "es", "src", "dist", "index.d.ts" ], "scripts": { "clean": "rimraf lib dist es", "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es", "prepublish": "npm run clean && npm run test && npm run build", "posttest": "npm run lint", "lint": "eslint src test", "test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register --reporter spec test/*.js", "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib", "build:es": "cross-env BABEL_ENV=es babel src --out-dir es", "build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack", "build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack" }, "repository": { "type": "git", "url": "git+https://github.com/shoaibkalsekar/redux-thunk-catch.git" }, "homepage": "https://github.com/shoaibkalsekar/redux-thunk-catch", "keywords": [ "redux", "thunk", "middleware", "redux-middleware", "flux", "error", "handler", "catch" ], "author": "Shoaib Kalsekar <shoaibkalsekar@gmail.com>", "license": "MIT", "devDependencies": { "babel-cli": "^6.6.5", "babel-core": "^6.6.5", "babel-eslint": "^5.0.0-beta4", "babel-loader": "^6.2.4", "babel-plugin-check-es2015-constants": "^6.6.5", "babel-plugin-transform-es2015-arrow-functions": "^6.5.2", "babel-plugin-transform-es2015-block-scoped-functions": "^6.6.5", "babel-plugin-transform-es2015-block-scoping": "^6.6.5", "babel-plugin-transform-es2015-classes": "^6.6.5", "babel-plugin-transform-es2015-computed-properties": "^6.6.5", "babel-plugin-transform-es2015-destructuring": "^6.6.5", "babel-plugin-transform-es2015-for-of": "^6.6.0", "babel-plugin-transform-es2015-function-name": "^6.5.0", "babel-plugin-transform-es2015-literals": "^6.5.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.6.5", "babel-plugin-transform-es2015-object-super": "^6.6.5", "babel-plugin-transform-es2015-parameters": "^6.6.5", "babel-plugin-transform-es2015-shorthand-properties": "^6.5.0", "babel-plugin-transform-es2015-spread": "^6.6.5", "babel-plugin-transform-es2015-sticky-regex": "^6.5.0", "babel-plugin-transform-es2015-template-literals": "^6.6.5", "babel-plugin-transform-es2015-unicode-regex": "^6.5.0", "babel-plugin-transform-es3-member-expression-literals": "^6.5.0", "babel-plugin-transform-es3-property-literals": "^6.5.0", "chai": "^3.2.0", "cross-env": "^1.0.7", "eslint": "^1.10.2", "eslint-config-airbnb": "1.0.2", "eslint-plugin-react": "^4.1.0", "mocha": "^2.2.5", "redux": "^3.4.0", "rimraf": "^2.5.2", "typescript": "^1.8.10", "typescript-definition-tester": "0.0.4", "webpack": "^1.12.14" }, "bugs": { "url": "https://github.com/shoaibkalsekar/redux-thunk-catch/issues" }, "directories": { "test": "test" }, "dependencies": {} }