redux-store-helper
Version:
Provides the ability to create typed redux domain-based stores in a simple manner.
70 lines (69 loc) • 2.19 kB
JSON
{
"name": "redux-store-helper",
"version": "1.0.2",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"postinstall": "husky install || true",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name @ikopenkov/redux-store-helper",
"postversion": "git push --follow-tags"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"redux-store-helper",
"store-helper",
"redux-helper",
"redux utils",
"mobx redux",
"redux",
"store"
],
"author": "Ivan Kopenkov <ivan.kopenkov@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ikopenkov/redux-store-helper",
"repository": {
"type": "git",
"url": "git@github.com:ikopenkov/redux-store-helper.git"
},
"bugs": {
"url": "https://github.com/ikopenkov/redux-store-helper/issues"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.16",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}