UNPKG

rememo

Version:

Memoized selectors for Redux and other immutable object derivation

65 lines (64 loc) 1.39 kB
{ "name": "rememo", "type": "module", "version": "4.0.0", "description": "Memoized selectors for Redux and other immutable object derivation", "main": "rememo.js", "module": "es/rememo.js", "exports": { ".": { "import": "./es/rememo.js", "require": "./rememo.js" } }, "files": [ "rememo.js", "rememo.d.ts", "dist", "es" ], "scripts": { "test:lint": "eslint .", "test:typecheck": "tsc", "test:unit": "mocha", "test": "npm-run-all --parallel test:*", "build:bundle": "rollup -c", "build:types": "tsc -p tsconfig.decl.json", "build": "npm-run-all --parallel build:*", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "https://github.com/aduth/rememo.git" }, "bugs": { "url": "https://github.com/aduth/rememo/issues" }, "author": { "name": "Andrew Duthie", "email": "andrew@andrewduthie.com", "url": "http://andrewduthie.com" }, "keywords": [ "redux", "selector", "selectors", "memoize", "memoization", "cache" ], "license": "MIT", "devDependencies": { "@aduth/eslint-config": "^4.2.1", "eslint": "^7.30.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jsdoc": "^35.4.3", "eslint-plugin-prettier": "^3.4.0", "mocha": "^9.0.2", "npm-run-all": "^4.1.5", "prettier": "^2.3.2", "rollup-plugin-terser": "^7.0.2", "sinon": "^11.1.1", "typescript": "^4.3.5" } }