{
  "name": "serverless-sentry",
  "version": "2.5.3",
  "description": "Serverless Sentry Plugin - Automatically send errors and exceptions to Sentry (https://sentry.io)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/arabold/serverless-sentry-plugin.git"
  },
  "author": "Andre Rabold",
  "homepage": "https://github.com/arabold/serverless-sentry-plugin",
  "bugs": {
    "url": "https://github.com/arabold/serverless-sentry-plugin/issues"
  },
  "main": "dist/index.js",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "build": "tsc --build tsconfig.release.json",
    "lint": "tsc --noemit && eslint 'src/**/*.{js,ts}'",
    "lint:staged": "lint-staged",
    "postversion": "git push && git push --tags",
    "prepare": "husky install && npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm test && npm run lint && npm run build && git add dist/",
    "test": "exit 0"
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "keywords": [
    "serverless plugin sentry",
    "serverless framework plugin",
    "serverless applications",
    "serverless plugins",
    "api gateway",
    "lambda",
    "aws",
    "aws lambda",
    "amazon",
    "amazon web services",
    "serverless.com",
    "sentry",
    "getsentry.com"
  ],
  "peerDependencies": {
    "serverless": ">=2",
    "serverless-sentry-lib": "2.x.x"
  },
  "dependencies": {
    "@supercharge/promise-pool": "^2.3.0",
    "adm-zip": "^0.5.9",
    "semver": "^7.3.2",
    "superagent": "^7.1.6",
    "uuid": "^8.0.0"
  },
  "devDependencies": {
    "@types/adm-zip": "^0.5.0",
    "@types/eslint": "^8.4.3",
    "@types/eslint-plugin-prettier": "^3.1.0",
    "@types/lodash": "^4.14.150",
    "@types/node": "^16.11.39",
    "@types/prettier": "^2.0.0",
    "@types/semver": "^7.1.0",
    "@types/serverless": "^3.12.7",
    "@types/superagent": "^4.1.7",
    "@types/uuid": "^8.3.0",
    "@typescript-eslint/eslint-plugin": "^5.28.0",
    "@typescript-eslint/parser": "^5.28.0",
    "eslint": "^8.17.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "husky": "^8.0.1",
    "import-sort-style-module": "^6.0.0",
    "lint-staged": "^13.0.1",
    "prettier": "^2.0.5",
    "prettier-plugin-import-sort": "^0.0.7",
    "prettier-plugin-package": "^1.0.0",
    "serverless": "^3.19.0",
    "typescript": "^4.2.4"
  },
  "importSort": {
    ".js, .jsx, .ts, .tsx": {
      "style": "module",
      "parser": "typescript"
    }
  },
  "lint-staged": {
    "src/**/*.{js,jsx,ts,tsx}": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "prettier": {
    "printWidth": 120,
    "tabWidth": 2,
    "useTabs": false,
    "semi": true,
    "singleQuote": false,
    "quoteProps": "as-needed",
    "trailingComma": "all",
    "bracketSpacing": true,
    "bracketSameLine": false,
    "arrowParens": "always"
  }
}
