{
  "name": "alphavantage",
  "version": "2.5.0",
  "description": "A simple interface to the Alpha Vantage API.",
  "main": "dist/bundle.js",
  "scripts": {
    "test": "jest",
    "lint": "prettier --write \"./!(dist)**/**.js\"",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "build": "rollup -c rollup.config.mjs"
  },
  "keywords": [
    "alpha vantage",
    "vantage",
    "alpha",
    "alphavantage",
    "stocks",
    "stock market",
    "api"
  ],
  "author": "Zack Urben <zackurben@gmail.com> (http://zackurben.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/zackurben/alphavantage"
  },
  "homepage": "https://github.com/zackurben/alphavantage",
  "engines": {
    "node": ">=6.0.0"
  },
  "dependencies": {
    "cross-fetch": "^4.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.23.2",
    "@babel/preset-env": "^7.23.2",
    "@rollup/plugin-babel": "^6.0.4",
    "babel-jest": "^29.7.0",
    "coveralls": "^3.1.1",
    "dotenv": "^16.3.1",
    "jest": "^29.7.0",
    "prettier": "^3.0.3",
    "rollup": "^4.1.4"
  },
  "jest": {
    "collectCoverage": true,
    "bail": false,
    "verbose": true,
    "testEnvironment": "node",
    "setupFiles": [
      "dotenv/config"
    ]
  }
}
