UNPKG

redux-duck

Version:

Helper function to create Redux modules using the ducks-modular-redux proposal.

57 lines (56 loc) 1.23 kB
{ "name": "redux-duck", "version": "1.2.0", "description": "Helper function to create Redux modules using the ducks-modular-redux proposal.", "main": "dist/index.js", "module": "dist/test-lib.esm.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepublishOnly": "yarn build" }, "repository": { "type": "git", "url": "git+https://github.com/sergiodxa/redux-duck.git" }, "keywords": [ "redux", "duck", "module", "helper" ], "author": { "url": "https://sergiodxa.com", "name": "Sergio Daniel Xalambrí", "email": "hello@sergiodxa.com" }, "license": "MIT", "bugs": { "url": "https://github.com/sergiodxa/redux-duck/issues" }, "homepage": "https://github.com/sergiodxa/redux-duck/", "devDependencies": { "@types/jest": "^24.0.23", "husky": "^3.1.0", "tsdx": "^0.11.0", "tslib": "^1.10.0", "typescript": "^3.7.2" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" } }