{
  "name": "@mollie/api-client",
  "version": "3.5.0",
  "license": "BSD-3-Clause",
  "description": "Official Mollie API client for Node",
  "repository": {
    "type": "git",
    "url": "https://github.com/mollie/mollie-api-node"
  },
  "keywords": [
    "mollie",
    "payment",
    "service",
    "provider",
    "api",
    "client",
    "payments",
    "gateway"
  ],
  "main": "dist/mollie.cjs.js",
  "module": "dist/mollie.esm.js",
  "jsnext:main": "dist/mollie.esm.js",
  "types": "dist/types/src/types.d.ts",
  "engines": {
    "node": ">=6.14"
  },
  "scripts": {
    "prepublish": "yarn build",
    "commit": "git-cz",
    "prepush": "yarn test",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:unit:cov": "jest ./tests/unit --coverage",
    "build": "yarn build:library && yarn build:declarations",
    "build:library": "rollup --config rollup.config.js",
    "build:declarations": "tsc --project tsconfig-declarations.json",
    "lint:prettier": "prettier --write \"{src,tests,examples}/**/*.{js,ts}\"",
    "lint:eslint": "eslint --ext .ts,.js src/",
    "lint:eslint:fix": "eslint --ext .ts,.js --fix src/",
    "lint": "yarn lint:eslint:fix && yarn lint:prettier"
  },
  "dependencies": {
    "axios": "^0.21.1",
    "lodash": "^4.17.20"
  },
  "devDependencies": {
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-typescript": "^7.12.7",
    "@mollie/eslint-config-typescript": "^1.4.0",
    "@types/jest": "^26.0.20",
    "@types/lodash": "^4.14.167",
    "@types/node": "^14.14.20",
    "@typescript-eslint/eslint-plugin": "^4.13.0",
    "axios-mock-adapter": "^1.19.0",
    "babel-jest": "^26.6.3",
    "commitizen": "^4.2.2",
    "cz-conventional-changelog": "^3.3.0",
    "dotenv": "^8.2.0",
    "eslint": "^7.17.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-prettier": "^3.3.1",
    "husky": "^4.3.7",
    "jest": "24.9.0",
    "jest-bluster": "^1.0.1",
    "lint-staged": "^10.5.3",
    "prettier": "^2.2.1",
    "rollup": "^2.36.1",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "typescript": "^4.1.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "src/**/*.ts": [
      "prettier --write \"src/**/*.{js,ts}\"",
      "eslint --ext .js,.ts --fix src/",
      "git add src/"
    ],
    "tests/**/*.ts": [
      "prettier --write \"tests/**/*.(js|ts)\"",
      "eslint --ext .js,.ts --fix tests/",
      "git add tests/"
    ],
    "examples/**/*.js": [
      "prettier --write \"examples/**/*.(js|ts)\"",
      "eslint --ext .js,.ts --fix examples/",
      "git add examples/"
    ]
  },
  "jest": {
    "moduleDirectories": [
      "node_modules",
      "dist",
      "src"
    ],
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
      "^.+\\.pem$": "<rootDir>/tests/unit/__stubs__/fileTransformer.js"
    },
    "testMatch": [
      "<rootDir>/tests/**/*.test.ts"
    ],
    "setupFilesAfterEnv": [
      "jest-bluster"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "files": [
    "dist/**/*"
  ],
  "resolutions": {
    "@babel/core": "^7.3.3",
    "babel-core": "7.0.0-bridge.0",
    "minimist": "^1.2.2",
    "acorn": "^7.1.1",
    "kind-of": "^6.0.3"
  }
}
