@vslutov/of-type
Version:
Operator ofType for redux-observable, compatible with redux-batch-middleware
82 lines (81 loc) • 2.02 kB
JSON
{
"name": "@vslutov/of-type",
"version": "0.1.6",
"description": "Operator ofType for redux-observable, compatible with redux-batch-middleware",
"main": "lib/index.js",
"module": "src/index.js",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vslutov/of-type.git"
},
"keywords": [
"redux",
"redux-observable",
"batch",
"redux-batch-middleware",
"of-type",
"ofType"
],
"author": "Vladimir Lutov <vs@lutov.net> (https://lutov.net)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vslutov/of-type/issues"
},
"homepage": "https://github.com/vslutov/of-type#readme",
"devDependencies": {
"ava": "^1.2.1",
"commitizen": "^3.0.7",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"esm": "^3.2.9",
"husky": "^1.3.1",
"nyc": "^13.3.0",
"redux-actions": "^2.6.4",
"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.4.0",
"rxjs": "^6.4.0",
"standard": "^12.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"peerDependencies": {
"redux-batch-middleware": "^0.2.0",
"rxjs": "^6.4.0"
},
"ava": {
"require": [
"esm"
]
},
"engines": {
"node": ">=10.15.1",
"npm": ">=6.4.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}