{
  "name": "paypal-custom-sdk",
  "version": "1.2.0",
  "description": "a minimalistic paypal sdk for custom integrations",
  "engines": {
    "node": ">= 18.12"
  },
  "devDependencies": {
    "@types/jest": "^29.5.3",
    "@types/node": "~18",
    "@types/qs": "^6.9.7",
    "@typescript-eslint/eslint-plugin": "~6.2",
    "@typescript-eslint/parser": "~6.2",
    "eslint": "~8.46",
    "eslint-config-prettier": "~9.0",
    "eslint-plugin-jest": "~27.2",
    "jest": "~29.6",
    "prettier": "~3.0",
    "rimraf": "~5.0",
    "ts-api-utils": "~1.0",
    "ts-jest": "~29.1",
    "typescript": "~5.1"
  },
  "scripts": {
    "prepare": "npm run build:release",
    "start": "node build/src/index.js",
    "clean": "rimraf coverage build tmp",
    "build": "tsc -p tsconfig.json",
    "build:watch": "tsc -w -p tsconfig.json",
    "build:release": "npm run clean && tsc -p tsconfig.release.json",
    "lint": "eslint . --ext .ts --ext .mts",
    "test": "jest --coverage",
    "prettier": "prettier --config .prettierrc --write .",
    "test:watch": "jest --watch",
    "publish:npm": "npm run build:release && npm publish --access public",
    "publish:patch": "npm version patch && npm run publish:npm",
    "publish:minor": "npm version minor && npm run publish:npm",
    "publish:major": "npm version major && npm run publish:npm"
  },
  "author": "Brian Vu",
  "license": "Apache-2.0",
  "dependencies": {
    "axios": "^1.4.0",
    "lodash": "^4.17.21",
    "moment": "^2.29.4",
    "qs": "^6.11.2",
    "tslib": "~2.6"
  },
  "volta": {
    "node": "18.12.1",
    "yarn": "3.6.2",
    "npm": "9.8.1"
  },
  "main": "build/src/index.js",
  "types": "build/src/index.d.ts",
  "files": [
    "build/src/**/*",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuhieu2610/paypal-custom-sdk.git"
  },
  "keywords": [
    "paypal-sdk",
    "paypal-api"
  ],
  "bugs": {
    "url": "https://github.com/vuhieu2610/paypal-custom-sdk/issues"
  },
  "homepage": "https://github.com/vuhieu2610/paypal-custom-sdk#readme"
}
