UNPKG

@severi/serverless-sentry

Version:

Serverless Sentry Plugin - Automatically send errors and exceptions to Sentry (https://sentry.io)

104 lines (103 loc) 2.79 kB
{ "name": "@severi/serverless-sentry", "version": "2.3.0", "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", "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": { "semver": "^7.3.2", "superagent": "^6.1.0", "uuid": "^8.0.0" }, "devDependencies": { "@types/eslint": "^7.2.11", "@types/eslint-plugin-prettier": "^3.1.0", "@types/lodash": "^4.14.150", "@types/node": "^14.17.0", "@types/prettier": "^2.0.0", "@types/semver": "^7.1.0", "@types/serverless": "^1.78.28", "@types/superagent": "^4.1.7", "@types/uuid": "^8.3.0", "@typescript-eslint/eslint-plugin": "^4.25.0", "@typescript-eslint/parser": "^4.25.0", "eslint": "^7.0.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-promise": "^5.1.0", "husky": "^6.0.0", "import-sort-style-module": "^6.0.0", "lint-staged": "^11.0.0", "prettier": "^2.0.5", "prettier-plugin-import-sort": "^0.0.7", "prettier-plugin-package": "^1.0.0", "serverless": "^2.43.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" } }