UNPKG

state-synchronizers

Version:

Deterministically update state based on other state

66 lines (65 loc) 1.82 kB
{ "name": "state-synchronizers", "version": "1.0.1", "description": "Deterministically update state based on other state", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "build:watch": "tsc -w", "lint": "eslint \"src/**/\"", "test": "jest", "test:watch": "npm run test -- --watch", "test:coverage": "npm run test -- --coverage", "check-types": "tsc --noEmit", "check-types:watch": "npm run check-types -- -w", "prepublish": "rm dist -rf && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/Gelio/state-synchronizers.git" }, "keywords": [ "state", "synchronizing", "state-management", "state management", "redux state", "redux" ], "author": "Grzegorz Rozdzialik <voreny.gelio@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Gelio/state-synchronizers/issues" }, "homepage": "https://github.com/Gelio/state-synchronizers#readme", "devDependencies": { "@types/jest": "^26.0.5", "@typescript-eslint/eslint-plugin": "^3.6.1", "@typescript-eslint/parser": "^3.6.1", "eslint": "^7.4.0", "eslint-config-prettier": "^6.11.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jest": "^23.18.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "husky": "^4.2.5", "jest": "^26.1.0", "lint-staged": "^10.2.11", "prettier": "^2.0.5", "ts-jest": "^26.1.3", "tslib": "^2.0.0", "typescript": "^3.9.7" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.(js,ts)": "eslint --cache --fix" } }