{
  "name": "@coinranking/supplies",
  "version": "2.72.0",
  "description": "Cryptocurrency supply data library in JavaScript (open source) for getting total, circulating and max supplies from block explorers.",
  "main": "lib/supplies.js",
  "engines": {
    "node": ">=16"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/coinranking/supplies.git"
  },
  "bin": "./bin/supplies.js",
  "readme": "README.md",
  "scripts": {
    "lint": "npx eslint --ext .js --ignore-path .eslintignore .",
    "test": "npx jest --forceExit",
    "cm": "git-cz",
    "docs": "jsdoc2md lib/models/*.js > DOCUMENTATION.md",
    "semantic-release": "semantic-release"
  },
  "bugs": {
    "url": "https://github.com/coinranking/supplies/issues"
  },
  "homepage": "https://coinranking.com",
  "keywords": [
    "cryptocurrencies",
    "cryptocurrency",
    "crypto",
    "altcoin",
    "bitcoin",
    "ethereum",
    "coin",
    "supplies",
    "circulating supply",
    "total supply",
    "max supply",
    "coinranking",
    "blockchain"
  ],
  "author": "Coinranking B.V.",
  "license": "MIT",
  "dependencies": {
    "cloudscraper": "^4.6.0",
    "commander": "^9.1.0",
    "node-cache": "^5.1.2",
    "request": "^2.88.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@commitlint/config-conventional": "^17.0.3",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/git": "^10.0.1",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.12.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jsdoc": "^39.3.3",
    "husky": "^8.0.1",
    "jest": "^29.0.1",
    "jsdoc": "^4.0.0",
    "jsdoc-to-markdown": "^7.1.1",
    "nock": "^13.2.4",
    "semantic-release": "^19.0.2"
  },
  "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"
    ],
    "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"
    }
  }
}
