{
  "name": "rx-polling-hmcts",
  "version": "1.1.1",
  "description": "Polling library done with RxJS",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "tsc",
    "clean": "rimraf lib",
    "lint": "eslint \"./index.ts\"",
    "test": "jest",
    "prepare": "npm run clean && npm run build",
    "prepush": "npm run lint && npm test"
  },
  "repository": "https://github.com/jiayihu/rx-polling",
  "keywords": [
    "rxjs",
    "polling",
    "long-polling",
    "network"
  ],
  "author": "Jiayi Hu <jiayi.ghu@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/chalk": "^0.4.31",
    "@types/jest": "^19.2.2",
    "@types/lodash": "^4.14.64",
    "@typescript-eslint/eslint-plugin": "^6.9.1",
    "@typescript-eslint/parser": "^6.9.1",
    "chalk": "^1.1.3",
    "eslint": "^8.52.0",
    "husky": "^0.13.3",
    "jest": "^29.7.0",
    "lodash": "^4.17.4",
    "rimraf": "^2.6.1",
    "rxjs": "^7.8.1",
    "rxjs-tslint": "^0.1.4",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "rxjs": ">=5.5.0"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "verbose": true,
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(test/.*\\.spec\\.(ts|js))$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ]
  },
  "dependencies": {
    "jest-environment-jsdom": "^29.7.0"
  }
}
