UNPKG

redux-bind-selectors

Version:

A Redux store enhancer for computing derived state by binding selectors to the store

65 lines (64 loc) 1.68 kB
{ "name": "redux-bind-selectors", "version": "1.1.13", "description": "A Redux store enhancer for computing derived state by binding selectors to the store", "main": "cjs/bind-selectors.js", "module": "es/bind-selectors.js", "scripts": { "pretest": "standard --verbose --fix", "test": "jest", "posttest": "npm run build && npm run markdown", "build": "rollup -c", "markdown": "npm run markdown:lint && npm run markdown:links", "markdown:lint": "standard-markdown", "markdown:links": "ls -1 *.md | xargs -t -n 1 markdown-link-check" }, "repository": { "type": "git", "url": "git+https://github.com/blgm/redux-bind-selectors.git" }, "keywords": [ "redux", "reselect", "selector", "state", "compute", "derive", "derived" ], "author": "George Blue", "license": "MIT", "bugs": { "url": "https://github.com/blgm/redux-bind-selectors/issues" }, "homepage": "https://github.com/blgm/redux-bind-selectors#readme", "devDependencies": { "@babel/core": "^7.3.4", "@babel/preset-env": "^7.3.4", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^28.0.2", "jest": "^28.1.0", "markdown-link-check": "^3.7.2", "redux": "^4.0.1", "regenerator-runtime": "^0.13.1", "rollup": "^2.0.2", "rollup-plugin-babel": "^4.3.2", "standard": "^17.0.0", "standard-markdown": "^7.0.0" }, "jest": { "collectCoverage": true, "coverageReporters": [ "text-summary", "html" ], "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } } } }