{
  "name": "@strong-roots-capital/bitmex-heartbeat",
  "version": "1.0.1",
  "description": "Handles websocket ping/pong with BitMEX",
  "main": "dist/bitmex-heartbeat.js",
  "types": "dist/bitmex-heartbeat.d.ts",
  "scripts": {
    "prepublishOnly": "npm run compile",
    "compile": "npm run clean && tsc",
    "clean": "rm -rf  dist",
    "ava": "ava -s -v",
    "ava:fail-fast": "ava -s -v --fail-fast",
    "watch:ava": "nodemon -e 'ts json' -x 'npm run ava || true'",
    "watch:ava:fail-fast": "nodemon -e 'ts json' -x 'npm run ava:fail-fast || true'",
    "test": "nyc ava -s -v",
    "test:tap": "nyc ava --tap | tap-nyc",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "watch:test": "nodemon -e 'ts json' -x 'npm test || true'",
    "typedoc": "typedoc",
    "push-with-tags": "git push origin master && git push origin --tags",
    "push-and-publish": "npm run push-with-tags && npm publish"
  },
  "files": [
    "dist/"
  ],
  "husky": {
    "hooks": {
      "pre-push": "npm run typedoc && git add doc && (git commit -m 'Update documentation' || true)"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/strong-roots-capital/bitmex-heartbeat.git"
  },
  "keywords": [
    "websocket",
    "ping-pong",
    "bitmex",
    "exchange",
    "heartbeat"
  ],
  "author": "Eric Crosson <eric.s.crosson@utexas.edu> (https://github.com/strong-roots-capital)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/strong-roots-capital/bitmex-heartbeat/issues"
  },
  "homepage": "https://github.com/strong-roots-capital/bitmex-heartbeat",
  "dependencies": {
    "@types/ws": "^6.0.1",
    "bitmex-realtime-api": "^0.4.0",
    "easytimer.js": "^3.0.1"
  },
  "devDependencies": {
    "@types/node": "^10.12.18",
    "@types/sinon": "^7.0.10",
    "ava": "^1.0.0",
    "codecov": "^3.1.0",
    "eventemitter2": "^5.0.1",
    "husky": "^1.3.1",
    "nyc": "^13.1.0",
    "sinon": "^7.2.7",
    "tap-nyc": "^1.0.3",
    "ts-node": "^7.0.1",
    "typedoc": "^0.13.0",
    "typedoc-plugin-markdown": "^1.1.20",
    "typescript": "^3.2.2",
    "ws": "^6.2.0"
  },
  "ava": {
    "compileEnhancements": false,
    "files": [
      "!dist/**/*.d.ts",
      "test/**/*.ts"
    ],
    "extensions": [
      "ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "nyc": {
    "include": [
      "src/*.ts"
    ],
    "exclude": [
      "typings"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
