UNPKG

nested-combine-reducers

Version:

Allows you to create your root reducer in one go, instead of individually combine slice reducers

64 lines (63 loc) 1.89 kB
{ "name": "nested-combine-reducers", "version": "2.0.0", "description": "Allows you to create your root reducer in one go, instead of individually combine slice reducers", "type": "commonjs", "main": "dist/cjs/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "scripts": { "pretest": "npm run clean:all && npm run build:test", "test": "jest", "clean:all": "npm run clean:build && npm run clean:codecov", "clean:build": "rimraf dist/", "clean:codecov": "rimraf codecov/", "prebuild": "npm run clean:build", "build": "npm run build:cjs && npm run build:esm", "build:cjs": "tsc --project tsconfig.json --module commonjs --outDir dist/cjs", "build:test": "tsc --project tsconfig.jest.json", "build:esm": "tsc --project tsconfig.json --module es2020", "postbuild": "renamer dist/* --find '*.js' --replace '.mjs'", "prerelease": "npm run build", "release": "np", "prepack": "npm run build" }, "repository": { "url": "https://github.com/federico-paolillo/nested-combine-reducers.git", "type": "git" }, "keywords": [ "redux", "utility", "combine", "reducers", "nested", "deep", "combineReducers" ], "author": "Federico Paolillo", "license": "MIT", "bugs": { "url": "https://github.com/federico-paolillo/nested-combine-reducers/issues" }, "homepage": "https://github.com/federico-paolillo/nested-combine-reducers#readme", "devDependencies": { "@types/jest": "^26.0.20", "jest": "^26.6.3", "np": "^7.2.0", "redux": "^4.0.5", "renamer": "^2.0.1", "rimraf": "^3.0.2", "typescript": "^4.1.3" }, "peerDependencies": { "redux": ">=4" }, "files": [ "dist/" ], "exports": { ".": "./dist/index.mjs", "./cjs": "./dist/cjs/index.js" } }