{
  "author": "Nicholas Jamieson <nicholas@cartant.com>",
  "bugs": {
    "url": "https://github.com/cartant/rxjs-etc/issues"
  },
  "dependencies": {
    "memoize-resolver": "~1.0.0"
  },
  "description": "Observables and operators for RxJS",
  "devDependencies": {
    "@cartant/tslint-config": "^2.0.0",
    "@cartant/tslint-config-etc": "^2.0.0",
    "@cartant/tslint-config-rxjs": "^2.0.0",
    "@types/chai": "^4.0.0",
    "@types/mocha": "^8.0.0",
    "@types/node": "^15.0.0",
    "@types/sinon": "^10.0.0",
    "chai": "^4.0.0",
    "cpy-cli": "^3.0.0",
    "husky": "^6.0.0",
    "karma": "^5.0.0",
    "karma-chrome-launcher": "^3.0.0",
    "karma-mocha": "^2.0.0",
    "karma-spec-reporter": "^0.0.32",
    "karma-webpack": "^4.0.2",
    "lint-staged": "^11.0.0",
    "mkdirp": "^1.0.0",
    "mocha": "^8.0.0",
    "prettier": "~2.3.0",
    "puppeteer": "^9.0.0",
    "rimraf": "^3.0.0",
    "rxjs": "^7.0.0",
    "rxjs-marbles": "^7.0.0",
    "rxjs-tslint-rules": "^4.0.0",
    "sinon": "^11.0.0",
    "ts-loader": "^8.0.0",
    "ts-snippet": "^5.0.0",
    "tslint": "^6.0.0",
    "tslint-etc": "^1.2.0",
    "typescript": "~4.3.2",
    "webpack": "^4.0.0",
    "webpack-cli": "^3.0.0",
    "webpack-rxjs-externals": "^2.0.0"
  },
  "files": [
    "dist",
    "observable",
    "operators",
    "scheduler",
    "source"
  ],
  "homepage": "https://github.com/cartant/rxjs-etc",
  "keywords": [
    "observable",
    "rxjs"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.{js,ts}": [
      "tslint --project tsconfig.json",
      "prettier --write"
    ]
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "name": "rxjs-etc",
  "optionalDependencies": {},
  "peerDependencies": {
    "rxjs": "^6.0.0 || ^7.0.0"
  },
  "private": false,
  "publishConfig": {
    "tag": "latest"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cartant/rxjs-etc.git"
  },
  "scripts": {
    "dist": "yarn lint && yarn run dist:clean && yarn run dist:build && yarn run dist:copy",
    "dist:build": "yarn run dist:build:cjs && yarn run dist:build:esm && yarn run dist:build:bundle",
    "dist:build:bundle": "webpack --config webpack.config.js && webpack --config webpack.config.js --env.production",
    "dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
    "dist:build:esm": "tsc -p tsconfig-dist-esm.json",
    "dist:clean": "rimraf dist && rimraf bundles/rxjs-etc.* && mkdirp bundles",
    "dist:copy": "cpy bundles/rxjs-etc.* dist/bundles",
    "lint": "tslint --project tsconfig.json \"source/**/*.ts\"",
    "prepare": "husky install",
    "prepublishOnly": "yarn run test && yarn run dist",
    "prettier": "prettier --write \"./source/**/*.{js,json,ts}\"",
    "prettier:ci": "prettier --check \"./source/**/*.{js,json,ts}\"",
    "test": "yarn run test:build && yarn run test:mocha && yarn run test:karma",
    "test:build": "yarn run test:clean && tsc -p tsconfig.json",
    "test:clean": "rimraf build",
    "test:karma": "karma start --single-run",
    "test:mocha": "mocha \"./build/**/*-spec.js\"",
    "test:watch": "yarn run test:build && karma start"
  },
  "sideEffects": false,
  "types": "./dist/esm/index.d.ts",
  "unpkg": "./bundles/rxjs-etc.min.umd.js",
  "version": "10.6.2"
}
