-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
109 lines (109 loc) · 2.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"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"
}
}