{
  "name": "@coinranking/exchanges",
  "version": "3.118.0",
  "description": "An open source JavaScript library for fetching tickers from cryptocurrency exchanges",
  "main": "lib/exchanges.js",
  "engines": {
    "node": ">=14.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/coinranking/exchanges.git"
  },
  "readme": "README.md",
  "scripts": {
    "cm": "git-cz",
    "lint": "npx eslint --ext .js --ignore-path .eslintignore .",
    "test": "npx jest --forceExit",
    "docs": "jsdoc2md models/*.js lib/*.js > DOCUMENTATION.md",
    "semantic-release": "semantic-release"
  },
  "bugs": {
    "url": "https://github.com/coinranking/exchanges/issues"
  },
  "homepage": "https://coinranking.com",
  "keywords": [
    "cryptocurrencies",
    "cryptocurrency",
    "library",
    "crypto",
    "altcoin",
    "bitcoin",
    "ethereum",
    "coin",
    "exchanges",
    "decentralized exchanges",
    "DEX",
    "markets",
    "tickers",
    "prices",
    "trading",
    "volume",
    "binance",
    "coinbase",
    "bitfinex",
    "kraken",
    "open",
    "high",
    "low",
    "close",
    "OHLC",
    "coinranking"
  ],
  "author": "Coinranking B.V.",
  "license": "MIT",
  "dependencies": {
    "cloudscraper": "^4.6.0",
    "commander": "^11.1.0",
    "request": "^2.88.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.2.0",
    "@commitlint/config-conventional": "^19.1.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "commitizen": "^4.3.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.57.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsdoc": "^48.2.1",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "jsdoc": "^4.0.2",
    "jsdoc-to-markdown": "^8.0.1",
    "nock": "^13.5.4",
    "semantic-release": "^23.0.4"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "coveragePathIgnorePatterns": [
      "/tests/helpers/"
    ],
    "coverageDirectory": "./coverage/",
    "coverageReporters": [
      "json",
      "lcov",
      "clover"
    ],
    "collectCoverage": true
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      {
        "path": "@semantic-release/git",
        "assets": [
          "package.json",
          "package-lock.json",
          "DOCUMENTATION.md",
          "CHANGELOG.md"
        ],
        "message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
      }
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-push": "npm run lint && npm run test"
    }
  }
}
