{
  "name": "binance-api-node",
  "version": "0.13.9",
  "description": "A node API wrapper for Binance",
  "main": "dist",
  "types": "index.d.ts",
  "browser": {
    "crypto": false,
    "./dist/http-client.js": "./dist/http-client.js"
  },
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "index.d.ts",
    "types"
  ],
  "scripts": {
    "build": "rm -rf dist && babel src -d dist",
    "prepare": "npm run build",
    "test": "npm run test:ava && npm run test:browser",
    "test:ava": "ava --timeout=90s -v",
    "test:browser": "node test/browser/browser-test-runner.mjs && ava test/browser/crypto-browser-playwright.js test/browser/websocket-browser.test.js --timeout=15s -v",
    "test:browser:signature": "node test/browser/browser-test-runner.mjs",
    "test:browser:websocket": "ava test/browser/websocket-browser.test.js --timeout=15s -v",
    "test:browser:crypto": "ava test/browser/crypto-browser-playwright.js --timeout=15s -v",
    "cover": "nyc ava",
    "report": "npm run cover && nyc report --reporter=text-lcov | coveralls",
    "lint": "eslint src",
    "static-tests": "ava test/static-tests.js",
    "prettier": "prettier --write '{src,test}/**/*.{ts,js}'",
    "prettier:check": "prettier -l '{src,test}/**/*.{ts,js}'",
    "ci": "npm run lint && npm run prettier:check && npm run test",
    "typecheck": "tsc --noEmit",
    "publishPackage": "npm run build && sh publish.sh && git push && git push --tags && npm publish"
  },
  "dependencies": {
    "https-proxy-agent": "^5.0.0",
    "isomorphic-ws": "^4.0.1",
    "json-bigint": "^1.0.0",
    "lodash.zipobject": "^4.1.3",
    "node-fetch": "^2.7.0",
    "reconnecting-websocket": "^4.2.0",
    "ws": "^7.2.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.7.4",
    "@babel/core": "^7.7.4",
    "@babel/polyfill": "^7.7.0",
    "@babel/preset-env": "^7.7.4",
    "@babel/register": "^7.7.4",
    "@types/node": "^18.0.0",
    "ava": "^4.1.0",
    "babel-eslint": "^10.0.3",
    "babel-plugin-module-resolver": "^3.2.0",
    "coveralls": "^3.0.9",
    "dotenv": "^8.2.0",
    "eslint": "^6.7.1",
    "eslint-config-prettier": "^6.7.0",
    "eslint-config-zavatta": "^6.0.0",
    "glob": "^11.0.3",
    "nock": "^14.0.10",
    "nyc": "^17.1.0",
    "playwright": "^1.56.1",
    "prettier": "^3.5.3",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.5"
  },
  "engines": {
    "npm": ">= 6.0.0"
  },
  "ava": {
    "require": [
      "@babel/register",
      "@babel/polyfill"
    ],
    "files": [
      "test/**/*",
      "!test/utils.js",
      "!test/config.js",
      "!test/browser-compat.mjs",
      "!test/browser/**/*"
    ],
    "concurrency": 1,
    "timeout": "60s"
  },
  "author": "Balthazar Gronon <git@balthazar.dev>",
  "homepage": "https://github.com/ccxt/binance-api-node",
  "license": "MIT"
}
