-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.71 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
{
"name": "@schibsted/middy-error-handler",
"version": "4.2.3",
"description": "Middy middleware for adding caching headers to success response and errors",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier --write",
"release": "release-it",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"npm run prettier"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/schibsted/middy-error-handler.git"
},
"keywords": [
"Lambda",
"Middleware",
"Serverless",
"Framework",
"AWS",
"AWS Lambda",
"Middy",
"HTTP",
"API",
"Error Handler",
"Error Handling"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/schibsted/middy-error-handler/issues"
},
"homepage": "https://github.com/schibsted/middy-error-handler#readme",
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@release-it/conventional-changelog": "5.1.1",
"@middy/core": "4.2.6",
"eslint": "8.35.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"http-errors": "2.0.0",
"husky": "8.0.3",
"jest": "29.4.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"release-it": "15.6.0"
},
"dependencies": {},
"peerDependencies": {
"@middy/core": ">=2.0.0"
}
}