{
  "name": "observable-socket",
  "version": "8.0.9",
  "description": "Wraps a websocket in an Observable.",
  "browser": "dist/browser.min.js",
  "main": "dist/cjs.js",
  "module": "dist/esm.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "npm run build:types && npm run build:module",
    "build:module": "rollup -c",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "prepublishOnly": "npm run build",
    "test": "npm run util:lint && npm run util:type-check && jest",
    "util:lint": "tslint -p tsconfig.json -c tslint.json",
    "util:type-check": "tsc -p ./tsconfig.json --noEmit"
  },
  "jest": {
    "preset": "ts-jest",
    "modulePathIgnorePatterns": [
      "<rootDir>/dist/"
    ]
  },
  "keywords": [
    "observable",
    "rx",
    "rxjs",
    "socket",
    "websocket",
    "ws"
  ],
  "bugs": {
    "url": "https://github.com/killtheliterate/observable-socket/issues"
  },
  "contributors": [
    "Garrett Dawson <killtheliterate@gmail.com> (http://thedrearlight.com/)",
    "Talon Poole <talon@theghostin.me> (http://theghostin.me)"
  ],
  "homepage": "https://github.com/killtheliterate/observable-socket",
  "repository": {
    "type": "git",
    "url": "https://github.com/killtheliterate/observable-socket.git"
  },
  "license": "MIT",
  "dependencies": {
    "@types/ws": "^8.2.2",
    "debug": "^4.4.0",
    "rxjs": "^6.6.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.14.8",
    "@babel/core": "^7.11.6",
    "@babel/plugin-proposal-class-properties": "^7.5.5",
    "@babel/plugin-proposal-object-rest-spread": "^7.5.5",
    "@babel/preset-env": "^7.14.8",
    "@babel/preset-typescript": "^7.10.1",
    "@types/debug": "4.1.12",
    "@types/jest": "^26.0.24",
    "cross-env": "^7.0.2",
    "jest": "^24.9.0",
    "rollup": "2.79.2",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-replace": "2.2.0",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-watch": "^4.3.1",
    "semantic-release": "^24.0.0",
    "semantic-release-npm-github-publish": "^1.5.1",
    "ts-jest": "^24.3.0",
    "tslint": "^6.1.3",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^5.0.2",
    "typescript-tslint-plugin": "^1.0.1",
    "ws": "8.18.1"
  }
}
