{
  "name": "zapier-platform-core",
  "version": "18.2.3",
  "description": "The core SDK for CLI apps in the Zapier Developer Platform.",
  "repository": "zapier/zapier-platform",
  "homepage": "https://platform.zapier.com/",
  "author": "Zapier Engineering <contact@zapier.com>",
  "license": "SEE LICENSE IN LICENSE",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "require": "./index.js",
      "import": "./index.mjs"
    },
    "./src/*": {
      "require": "./src/*.js"
    }
  },
  "files": [
    "/include/",
    "/index.js",
    "/index.mjs",
    "/src/",
    "/types/"
  ],
  "engines": {
    "node": ">=16",
    "npm": ">=5.6.0"
  },
  "engineStrict": true,
  "dependencies": {
    "@zapier/secret-scrubber": "^1.1.2",
    "content-disposition": "0.5.4",
    "dotenv": "17.2.1",
    "fernet": "^0.3.3",
    "form-data": "4.0.5",
    "lodash": "4.17.23",
    "mime-types": "3.0.1",
    "node-abort-controller": "3.1.1",
    "node-fetch": "2.7.0",
    "oauth-sign": "0.9.0",
    "semver": "7.7.2",
    "zapier-platform-schema": "18.2.3"
  },
  "devDependencies": {
    "@types/node-fetch": "^2.6.11",
    "adm-zip": "0.5.16",
    "aws-sdk": "^2.1397.0",
    "dicer": "^0.3.1",
    "fs-extra": "^11.3.0",
    "mock-fs": "^5.5.0",
    "nock": "^13.5.4",
    "tsd": "^0.31.1"
  },
  "peerDependencies": {
    "zapier-platform-legacy-scripting-runner": ">=3"
  },
  "peerDependenciesMeta": {
    "zapier-platform-legacy-scripting-runner": {
      "optional": true
    }
  },
  "optionalDependencies": {
    "@types/node": "^20.3.1"
  },
  "scripts": {
    "preversion": "git pull && pnpm test",
    "version": "node bin/bump-dependencies.js && pnpm install && git add package.json pnpm-lock.yaml",
    "postversion": "git push && git push --tags",
    "main-tests": "mocha -t 20s --recursive test --exit",
    "type-tests": "tsd --files types/**/*.test-d.ts",
    "solo-test": "test $(OPT_OUT_PATCH_TEST_ONLY=yes mocha --recursive test -g 'should be able to opt out of patch' -R json | jq '.stats.passes') -eq 1 && echo 'Ran 1 test and it passed!'",
    "test": "pnpm main-tests && pnpm solo-test && pnpm type-tests",
    "test:debug": "mocha inspect -t 10s --recursive test",
    "debug": "mocha -t 10s --inspect-brk --recursive test",
    "test:w": "mocha -t 10s --recursive test --watch",
    "integration-test": "mocha -t 20s integration-test",
    "local-integration-test": "mocha -t 10s integration-test --local",
    "lambda-integration-test": "mocha -t 10s integration-test --lambda",
    "smoke-test": "mocha -t 2m smoke-test",
    "lint": "eslint src test",
    "lint:fix": "eslint --fix src test",
    "build-integration-test": "bin/build.sh local.bundle.zip",
    "upload-integration-test": "bin/upload-lambda.js local.bundle.zip",
    "deploy-integration-test": "pnpm build-integration-test && pnpm upload-integration-test",
    "validate": "pnpm test && pnpm smoke-test && pnpm lint"
  }
}