-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
112 lines (112 loc) · 3.03 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
110
111
112
{
"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"
}
}