UNPKG

redux-promise-middleware-actions

Version:

Redux action creator for making async actions with redux-promise-middleware

60 lines (59 loc) 1.49 kB
{ "name": "redux-promise-middleware-actions", "version": "3.1.0", "description": "Redux action creator for making async actions with redux-promise-middleware", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", "lint": "eslint . --ext .js,.ts,.tsx", "prepublishOnly": "tsc", "pretest": "npm run lint", "test": "nyc mocha", "version": "npm run changelog && git add CHANGELOG.md" }, "repository": { "type": "git", "url": "git+https://github.com/omichelsen/redux-promise-middleware-actions.git" }, "keywords": [ "redux", "actions", "promise", "async" ], "author": "Ole Michelsen", "license": "MIT", "bugs": { "url": "https://github.com/omichelsen/redux-promise-middleware-actions/issues" }, "homepage": "https://github.com/omichelsen/redux-promise-middleware-actions#readme", "dependencies": { "tslib": "^2.1.0" }, "devDependencies": { "@types/mocha": "^8.2.0", "@types/node": "^14.14.25", "conventional-changelog-cli": "^2.1.1", "eslint-config-omichelsen": "^1.3.2", "mocha": "^8.2.1", "nyc": "^15.1.0", "ts-node": "^9.1.1", "typescript": "^4.1.5" }, "nyc": { "extension": [ ".ts" ], "include": [ "src/**/*.ts" ], "reporter": [ "lcov", "text-summary" ], "sourceMap": true, "instrument": true } }