{
  "name": "rxjs-stream",
  "version": "5.0.0",
  "description": "nodejs streams for rxjs 7",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "lint": "npm run check-spelling && eslint . --fix",
    "lint-travis": "npm run check-spelling && eslint .",
    "check-spelling": "cspell \"src/**\" \"*.md\" \"samples/**\"",
    "build": "npm run compile",
    "clean": "rimraf ./dist",
    "clean-build": "npm run clean && npm run build",
    "compile": "tsc -p .",
    "watch": "tsc --watch -p .",
    "tsc": "tsc -p .",
    "coverage": "npm run generate-code-coverage",
    "generate-code-coverage": "NODE_ENV=test nyc npm run test-ts",
    "test-ts": "NODE_ENV=test mocha --require ts-node/register --recursive --bail \"src/**/*.test.ts\"",
    "test-watch": "npm run build && mocha --require ts-node/register --watch --recursive \"src/**/*.test.ts\"",
    "prepare": "npm run clean-build",
    "prepublishOnly": "npm test",
    "coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
    "release": "npx standard-version",
    "travis-coverage": "npm run generate-code-coverage && npm run coverage-coveralls",
    "test": "mocha --recursive \"dist/**/*.test.js\"",
    "update-packages": "npm i && npx npm-check-updates -t minor -u && rimraf node_modules package-lock.json && npm i"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Jason3S/rx-stream.git"
  },
  "keywords": [
    "rxjs",
    "node",
    "stream"
  ],
  "author": "Jason Dent",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Jason3S/rx-stream/issues"
  },
  "homepage": "https://github.com/Jason3S/rx-stream#readme",
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/chai": "^4.3.1",
    "@types/mocha": "^9.1.1",
    "@types/node": "^17.0.40",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "chai": "^4.3.6",
    "coveralls": "^3.1.1",
    "cspell": "^6.1.1",
    "eslint": "^8.17.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "fs-extra": "^10.1.0",
    "lorem-ipsum": "^2.0.4",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "rxjs": "^7.5.5",
    "ts-node": "^10.8.0",
    "typescript": "^4.7.3"
  },
  "dependencies": {
    "@types/fs-extra": "^9.0.13"
  },
  "peerDependencies": {
    "rxjs": "^7.0.0"
  },
  "engines": {
    "node": ">=14"
  },
  "files": [
    "dist",
    "!**/*.map",
    "!**/*.test.*",
    "!**/*.spec.*"
  ],
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/*.test.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "lcov",
      "json",
      "html"
    ]
  }
}
