UNPKG

rxjs-observable-store

Version:

A state management solution implemented using RxJS to mimic Redux architecture.

62 lines (61 loc) 1.41 kB
{ "name": "rxjs-observable-store", "version": "3.1.0", "description": "A state management solution implemented using RxJS to mimic Redux architecture.", "keywords": [ "rxjs", "observable", "store", "redux", "angular", "state management" ], "license": "MIT", "author": { "name": "George Byte", "url": "https://georgebyte.com" }, "homepage": "https://georgebyte.com/state-management-in-angular-with-observable-store-services/", "repository": { "type": "git", "url": "git+https://github.com/georgebyte/rxjs-observable-store.git" }, "bugs": { "url": "https://github.com/georgebyte/rxjs-observable-store/issues" }, "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "typings": "./lib/esm/index.d.ts", "scripts": { "test": "jest", "build": "rimraf lib/**/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json", "prepare": "npm run build" }, "files": [ "lib/" ], "jest": { "moduleFileExtensions": [ "ts", "js" ], "transform": { "\\.ts$": "ts-jest" }, "testRegex": "/src/.*\\.spec\\.ts$" }, "dependencies": { "ts-toolbelt": "~9.6.0" }, "peerDependencies": { "rxjs": "7.x" }, "devDependencies": { "@types/jest": "^27.4.0", "jest": "^27.5.0", "rimraf": "^3.0.2", "rxjs": "7.x", "ts-jest": "~27.1.3", "typescript": "~4.5.5" } }