package.json

Summary

Maintainability
Test Coverage
{
  "name": "@stoqey/ib",
  "version": "1.3.26",
  "private": false,
  "description": "Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)",
  "keywords": [
    "interactive",
    "brokers",
    "tws",
    "twsapi",
    "ib",
    "gateway",
    "finance",
    "stock",
    "bond",
    "option",
    "forex",
    "future",
    "ticker",
    "symbol",
    "quote",
    "market",
    "data",
    "automated",
    "invest",
    "trade",
    "trading",
    "system",
    "api",
    "client",
    "library",
    "stoqey"
  ],
  "homepage": "https://github.com/stoqey/ib",
  "bugs": {
    "url": "https://github.com/stoqey/ib/issues"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/stoqey/ib.git"
  },
  "license": "MIT",
  "author": {
    "name": "Ceddy Muhoza",
    "email": "ceddymuhoza@gmail.com",
    "url": "https://ceddy.org"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/",
    "register/",
    "LICENSE"
  ],
  "scripts": {
    "build": "yarn clean && yarn tsc",
    "build:watch": "yarn tsc --watch",
    "clean": "rm -rf dist",
    "doc": "typedoc --excludeInternal",
    "doc:dev": "typedoc --out ./doc-dev",
    "lint": "eslint . --ext .ts",
    "prepublishOnly": "yarn build",
    "release": "yarn lint && yarn test && yarn doc && yarn build",
    "test": "jest --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
    "test-next": "jest ./src/tests/unit/api-next/ --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
    "type-check": "tsc --noEmit"
  },
  "dependencies": {
    "colors": "^1.4.0",
    "command-buffer": "^0.1.0",
    "dotenv": "^16.4.5",
    "eventemitter3": "^5.0.1",
    "function-rate-limit": "^1.1.0",
    "rxjs": "^7.8.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^18.19.41",
    "@types/source-map-support": "^0.5.10",
    "@typescript-eslint/eslint-plugin": "^7.16.1",
    "@typescript-eslint/parser": "^7.16.1",
    "ajv": "^8.17.1",
    "eslint": "^8.57.0",
    "eslint-plugin-jest": "^28.6.0",
    "eslint-plugin-rxjs": "^5.0.3",
    "jest": "^29.7.0",
    "jest-environment-node": "^29.7.0",
    "jest-junit": "^16.0.0",
    "ts-jest": "^29.2.3",
    "typedoc": "^0.26.4",
    "typescript": "^5.5.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}