{
  "name": "rxjs-util-classes",
  "version": "3.0.1",
  "description": "Simple RxJS implementations for Redux-like store, state management, cache maps, and event emitters that are commonly used across projects.",
  "author": "David Houseknecht <david.houseknecht.dev@gmail.com>",
  "license": "MIT",
  "main": "build/index.js",
  "browser": "build/rxjs-util-classes.es.js",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch --collectCoverage=false",
    "lint": "tslint --project . --config tslint.json",
    "lint:fix": "tslint --project . --config tslint.json --fix",
    "build": "tsc --project . && rollup -c",
    "doc": "typedoc --options typedoc.config.js && touch ./docs/.nojekyll",
    "commit": "git-cz",
    "codecov": "codecov",
    "semantic-release": "semantic-release"
  },
  "dependencies": {
    "tslib": "^2.2.0"
  },
  "peerDependencies": {
    "rxjs": "^7.8.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.12.10",
    "@types/jest": "^26.0.22",
    "babel-jest": "^29.5.0",
    "codecov": "^3.8.1",
    "commitizen": "^4.2.2",
    "cz-conventional-changelog": "^3.3.0",
    "husky": "^6.0.0",
    "jest": "^29.5.0",
    "rollup": "^2.34.2",
    "rollup-plugin-typescript": "^1.0.1",
    "rxjs": "^7.8.1",
    "semantic-release": "^21.0.5",
    "ts-jest": "^29.1.0",
    "tslint": "^6.1.3",
    "tslint-config-semistandard": "^8.0.1",
    "typedoc": "^0.24.8",
    "typescript": "^4.9.5"
  },
  "files": [
    "build",
    "docs"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "npm run doc && git add ./docs",
      "pre-push": "npm run lint && npm run test"
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "analyzeCommits": {
      "preset": "angular",
      "releaseRules": [
        {
          "type": "docs",
          "release": "patch"
        }
      ]
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/djhouseknecht/rxjs-util-classes.git"
  },
  "bugs": {
    "url": "https://github.com/djhouseknecht/rxjs-util-classes/issues"
  },
  "homepage": "https://github.com/djhouseknecht/rxjs-util-classes#readme",
  "keywords": [
    "rxjs",
    "utils",
    "state",
    "store",
    "state management",
    "redux",
    "dynamic store"
  ]
}
