-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.81 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
{
"name": "middy-middleware-json-error-handler",
"version": "4.0.0",
"description": "A middy JSON error handler middleware.",
"homepage": "",
"license": "MIT",
"author": {
"name": "Daniel Bartholomae",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "./lib/index.js",
"keywords": [
"middy",
"middleware",
"error",
"http",
"json"
],
"types": "lib/index.d.ts",
"packageManager": "[email protected]",
"private": false,
"dependencies": {
"debug": "^4.3.4",
"serialize-error": "^8.1.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@middy/core": ">=1.0.0"
},
"directories": {
"docs": "docs",
"example": "examples"
},
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.build.json",
"docs": "typedoc",
"pretest": "npm run build",
"release": "semantic-release",
"start": "cd test && serverless offline",
"test": "npm run lint && npm run test:unit && npm run test:integration && pkg-ok",
"test:integration": "concurrently --kill-others --success first \"cd test && serverless offline\" \"wait-on http://localhost:3000/dev/status && jest -c jest.integration.config.js\"",
"test:unit": "jest",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"precommit:lint:fix": "tslint --project tsconfig.json --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@middy/core": "^6.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/aws-lambda": "^8.10.81",
"@types/debug": "^4.1.7",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.1",
"aws-lambda": "*",
"codecov": "^3.8.3",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"http-errors": "^2.0.0",
"husky": "^9.0.6",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.1",
"pkg-ok": "^3.0.0",
"prettier-standard": "^16.4.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"serverless": "^3.34.0",
"serverless-offline": "^14.0.0",
"serverless-webpack": "^5.13.0",
"source-map-support": "^0.5.19",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"typedoc": "^0.27.2",
"typescript": "^5.1.6",
"wait-on": "^8.0.0",
"webpack": "^5.82.1"
},
"repository": "[email protected]:dbartholomae/middy-middleware-json-error-handler.git"
}