UNPKG

serverless-sentry-lib

Version:

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

113 lines (112 loc) 3.1 kB
{ "name": "serverless-sentry-lib", "version": "2.5.2", "description": "Serverless Sentry Lib - Automatically send errors and exceptions to Sentry (https://sentry.io)", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/arabold/serverless-sentry-lib.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": "mocha src/*.test.ts --require ts-node/register" }, "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": { "@sentry/integrations": ">=5", "@sentry/node": ">=5" }, "devDependencies": { "@sentry/integrations": "^7.2.0", "@sentry/node": "^7.2.0", "@types/aws-lambda": "^8.10.61", "@types/chai": "^4.2.12", "@types/chai-as-promised": "^7.1.3", "@types/eslint": "^8.4.3", "@types/eslint-plugin-prettier": "^3.1.0", "@types/mocha": "^9.1.1", "@types/node": "^14.17.0", "@types/prettier": "^2.1.0", "@types/proxyquire": "^1.3.28", "@types/sinon": "^10.0.0", "@types/sinon-chai": "^3.2.4", "@typescript-eslint/eslint-plugin": "^5.29.0", "@typescript-eslint/parser": "^5.29.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "eslint": "^8.18.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.2", "mocha": "^10.0.0", "prettier": "^2.1.1", "prettier-plugin-import-sort": "^0.0.7", "prettier-plugin-package": "^1.0.0", "proxyquire": "^2.1.3", "sinon": "^14.0.0", "sinon-chai": "^3.5.0", "ts-node": "^10.0.0", "typescript": "^4.0.2" }, "types": "dist/index.d.ts", "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, "jsxBracketSameLine": false, "arrowParens": "always" } }