{
  "author": "Nicholas Jamieson <nicholas@cartant.com>",
  "bugs": {
    "url": "https://github.com/cartant/rxjs-interop/issues"
  },
  "dependencies": {},
  "description": "Observable interop helpers for RxJS",
  "devDependencies": {
    "@cartant/eslint-config": "^3.0.0",
    "@cartant/eslint-config-etc": "^3.0.0",
    "@types/chai": "^4.0.0",
    "@types/mocha": "^9.0.0",
    "@typescript-eslint/parser": "^5.2.0",
    "chai": "^4.1.2",
    "cpy-cli": "^3.0.0",
    "eslint": "^8.1.0",
    "husky": "^7.0.0",
    "lint-staged": "^11.0.0",
    "mocha": "^9.0.0",
    "prettier": "~2.4.0",
    "rimraf": "^3.0.0",
    "rxjs": "^7.0.0",
    "typescript": "~4.4.2"
  },
  "files": [
    "dist",
    "source"
  ],
  "homepage": "https://github.com/cartant/rxjs-interop",
  "keywords": [
    "interop",
    "observable",
    "rxjs"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": "prettier --write"
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "name": "rxjs-interop",
  "optionalDependencies": {},
  "peerDependencies": {},
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/cartant/rxjs-interop.git"
  },
  "scripts": {
    "dist": "yarn run dist:clean && yarn run dist:build",
    "dist:build": "yarn run dist:build:cjs && yarn run dist:build:esm",
    "dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
    "dist:build:esm": "tsc -p tsconfig-dist-esm.json",
    "dist:clean": "rimraf dist",
    "lint": "eslint \"source/**/*.{js,ts}\"",
    "prepare": "husky install",
    "prepublishOnly": "yarn run test && yarn run dist",
    "prettier": "prettier --write \"./**/{scripts,source}/**/*.{js,json,ts}\"",
    "prettier:ci": "prettier --check \"./**/{scripts,source}/**/*.{js,json,ts}\"",
    "test": "yarn run lint && yarn run test:build && mocha ./build/**/*-spec.js",
    "test:build": "yarn run test:clean && tsc -p tsconfig-test.json",
    "test:clean": "rimraf build"
  },
  "sideEffects": false,
  "types": "./dist/esm/index.d.ts",
  "version": "2.0.0"
}
