{
  "name": "google-trends-api-client",
  "version": "1.1.0",
  "description": "An fully typed and easy to use client for the google trends api.",
  "author": "UladKasach @uladkasach",
  "license": "MIT",
  "repository": "ehmpathy/google-trends-api-client",
  "homepage": "https://github.com/ehmpathy/google-trends-api-client",
  "keywords": [
    "google-trends-api",
    "google",
    "trends",
    "api",
    "client"
  ],
  "bugs": "https://github.com/ehmpathy/google-trends-api-client/issues",
  "main": "dist/index.js",
  "engines": {
    "node": ">=8.0.0"
  },
  "files": [
    "/dist"
  ],
  "scripts": {
    "build:clean": "rm -rf ./dist",
    "build:ts": "tsc -p ./tsconfig.build.json",
    "build": "npm run build:clean && npm run build:ts",
    "test:types": "tsc --noEmit",
    "test:format": "prettier --parser typescript --check 'src/**/*.ts' --config ./prettier.config.js",
    "test:lint": "eslint -c ./.eslintrc.js src/**/*.ts",
    "test:unit": "jest --forceExit --verbose --passWithNoTests",
    "test:integration": "jest -c ./jest.integration.config.js --forceExit --verbose --passWithNoTests",
    "test": "npm run test:types && npm run test:lint && npm run test:unit",
    "prepublish": "npm run build",
    "preversion": "npm run prepublish && npm run test",
    "postversion": "git push origin HEAD --tags --no-verify"
  },
  "devDependencies": {
    "@types/dotenv": "^8.2.0",
    "@types/jest": "27.0.1",
    "@types/uuid": "3.4.5",
    "@typescript-eslint/eslint-plugin": "2.19.0",
    "@typescript-eslint/parser": "2.19.0",
    "core-js": "3.15.2",
    "dotenv": "^8.6.0",
    "eslint": "6.1.0",
    "eslint-config-airbnb-base": "14.0.0",
    "eslint-config-airbnb-typescript": "7.0.0",
    "eslint-config-prettier": "6.10.0",
    "eslint-plugin-import": "2.20.1",
    "eslint-plugin-prettier": "3.1.2",
    "husky": "1.3.1",
    "jest": "27.0.6",
    "prettier": "2.0.4",
    "simple-on-disk-cache": "^1.1.0",
    "ts-jest": "27.0.4",
    "typescript": "^4.5.5",
    "uuid": "3.3.3"
  },
  "dependencies": {
    "bottleneck": "^2.19.5",
    "got-scraping": "^3.2.11",
    "simple-cookie-client": "^0.3.0",
    "url-fns": "^1.2.0",
    "with-simple-caching": "^0.3.0"
  }
}
