@vslutov/router-middleware
Version:
Router middleware for connected-react-router compatible with redux-batch-middleware
89 lines (88 loc) • 2.33 kB
JSON
{
"name": "@vslutov/router-middleware",
"version": "0.1.3",
"description": "Router middleware for connected-react-router compatible with redux-batch-middleware",
"main": "lib/index.js",
"module": "src/index.js",
"sideEffects": false,
"scripts": {
"test": "standard && ava",
"build": "rollup -c",
"clean": "rimraf lib .nyc_output",
"cz": "git-cz",
"cover": "nyc ava && nyc report --reporter=text-lcov | coveralls",
"remark": "remark . .github",
"prepublishOnly": "npm install && npm run clean && npm test && npm run build && npm prune --production && npm dedupe && npm shrinkwrap",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vslutov/router-middleware.git"
},
"keywords": [
"redux",
"batch",
"react-router",
"connected-react-router",
"redux-batch-middleware",
"router-middleware"
],
"author": "Vladimir Lutov <vs@lutov.net> (https://lutov.net)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vslutov/router-middleware/issues"
},
"homepage": "https://github.com/vslutov/router-middleware#readme",
"devDependencies": {
"ava": "^1.2.1",
"commitizen": "^3.0.7",
"connected-react-router": "^6.3.1",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"esm": "^3.2.9",
"husky": "^2.0.0",
"nyc": "^14.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"redux": "^4.0.1",
"redux-batch-middleware": "^0.2.0",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-recommended": "^3.0.2",
"rimraf": "^2.6.3",
"rollup": "^1.12.1",
"sinon": "^7.2.6",
"standard": "^12.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"peerDependencies": {
"connected-react-router": "^6.3.1",
"redux-batch-middleware": "^0.2.0"
},
"ava": {
"require": [
"esm"
]
},
"engines": {
"node": ">=10.15.1",
"npm": ">=6.4.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}