{
  "name": "anx-api",
  "version": "8.2.1",
  "description": "AppNexus Api Wrapper",
  "homepage": "https://github.com/appnexus/anx-api",
  "bugs": "https://github.com/appnexus/anx-api/issues",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "CONTRIBUTING.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/appnexus/anx-api.git"
  },
  "scripts": {
    "build": "npm run clean && tsc",
    "clean": "rm -rf coverage && rm -rf lib && mkdir lib",
    "cover": "jest src --coverage",
    "dependency-check": "npm audit --production",
    "lint": "eslint --ext .js,.ts src",
    "lint-fix": "eslint --ext .js,.ts src --fix",
    "preversion": "npm run build",
    "test": "jest src",
    "watch": "jest src --watch"
  },
  "keywords": [
    "AppNexus"
  ],
  "author": "Tim Santeford",
  "license": "Apache-2.0",
  "licenses": [
    {
      "type": "Apache-2.0",
      "url": "http://www.apache.org/licenses/LICENSE-2.0"
    }
  ],
  "dependencies": {
    "axios": "1.12.0",
    "lodash": "^4.17.15",
    "qs": "^6.10.3",
    "url-join": "^4.0.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/lodash": "^4.14.168",
    "@types/node": "^14.14.28",
    "@types/qs": "^6.9.5",
    "@types/url-join": "^4.0.0",
    "@typescript-eslint/eslint-plugin": "^5.30.5",
    "@typescript-eslint/parser": "^5.30.5",
    "eslint": "^8.19.0",
    "eslint-config-appnexus": "^7.1.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-lodash": "^7.4.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.0.0",
    "jest": "^29.7.0",
    "nock": "^13.0.7",
    "prettier": "^2.5.1",
    "ts-jest": "^29.2.5",
    "typescript": "^4.7.4"
  },
  "jest": {
    "verbose": false,
    "testEnvironment": "node",
    "coverageDirectory": "../coverage/",
    "collectCoverageFrom": [
      "**/*.js",
      "**/*.ts"
    ],
    "coverageReporters": [
      "html"
    ],
    "rootDir": "src",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ],
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)$",
    "transform": {
      "^.+\\.ts$": "ts-jest"
    }
  }
}
