reducer-class
Version:
Boilerplate free class-based reducer creator. Built with TypeScript. Works with Redux and NGRX. Has integration with immer.
63 lines (62 loc) • 1.84 kB
JSON
{
"name": "reducer-class",
"version": "1.4.0",
"description": "Boilerplate free class-based reducer creator. Built with TypeScript. Works with Redux and NGRX. Has integration with immer.",
"main": "dist/index.js",
"scripts": {
"test": "npx jest -i",
"compile": "npx shx rm -rf dist && npx tsc -p tsconfig.prod.json",
"lint": "npx tsc -p tsconfig.json --noEmit && npx tslint -c tslint.json -p tsconfig.json",
"prepack": "npm run compile",
"coverage-report": "npx shx cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenondrums/reducer-class.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"state",
"class",
"decorator",
"decorated",
"reducer"
],
"author": "keenondrums (andrey.goncharov+it@protonmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keenondrums/reducer-class/issues"
},
"homepage": "https://github.com/keenondrums/reducer-class#readme",
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/redux-actions": "^2.3.2",
"coveralls": "^3.0.3",
"doctoc": "^1.4.0",
"flux-action-class": "^1.1.1",
"husky": "^1.3.1",
"immer": "^1.11.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.16.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"reflect-metadata": "^0.1.13",
"shx": "^0.3.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"redux-create-reducer": "^1.2.0",
"typelevel-ts": "^0.3.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"immer": "^1.11.0"
}
}