{
  "name": "@binance/connector",
  "version": "3.6.1",
  "description": "This is a lightweight library that works as a connector to the Binance public API.",
  "main": "src/index.js",
  "scripts": {
    "jsdoc": "jsdoc -c ./docs_src/conf.json && ./docs_src/docs.sh",
    "jsdoc:win": "jsdoc -c ./docs_src/conf.json && npx jsdoc --readme ./docs_src/gettingStarted.md src/modules/restful/blvt.js && node ./docs_src/generateDoc.js && RD /S /Q out",
    "test": "jest --maxWorkers 4 --bail",
    "test:watch": "jest --watchAll",
    "coverage": "jest --silent --ci --coverage --testLocationInResults --json --outputFile=\"report.json\"",
    "standard": "standard",
    "standard:fix": "standard --fix ",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/binance/binance-connector-node.git"
  },
  "engines": {
    "node": ">=12.22.3",
    "npm": ">=6.14.13"
  },
  "keywords": [
    "Binance",
    "API"
  ],
  "author": "Binance",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/binance/binance-connector-node/issues"
  },
  "homepage": "https://github.com/binance/binance-connector-node#readme",
  "devDependencies": {
    "clean-jsdoc-theme": "^4.2",
    "husky": "^6.0.0",
    "jest": "^29.5",
    "jsdoc": "^4.0.0",
    "marked": "^4.3.0",
    "nock": "^13.3",
    "standard": "^17.0"
  },
  "files": [
    "src/**/*"
  ],
  "dependencies": {
    "axios": "^1.7.4",
    "ws": "^8.17.1"
  },
  "jest": {
    "testPathIgnorePatterns": [
      "__tests__/websocket/subscription.test.js"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!axios)/"
    ],
    "testMatch": [
      "**/__tests__/**/*.test.js"
    ]
  },
  "standard": {
    "ignore": [
      "/docs/**/*.js"
    ]
  }
}
