-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "@nhs/fhir-middy-error-handler",
"version": "1.0.0",
"description": "A variant of the Middy Error Handler for use in a FHIR AWS lambda.",
"scripts": {
"build": "tsc",
"lint": "eslint --max-warnings 0 --fix --config ./eslint.config.mjs .",
"test": "POWERTOOLS_DEV=true NODE_OPTIONS=--experimental-vm-modules jest --no-cache --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NHSDigital/nhs-fhir-middy-error-handler.git"
},
"keywords": [],
"author": "NHSDigital",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.2.0",
"eslint-plugin-import-newlines": "^2.0.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.4.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@aws-lambda-powertools/logger": "2.32.0",
"@middy/core": "7.1.2"
},
"bugs": {
"url": "https://github.com/NHSDigital/nhs-fhir-middy-error-handler/issues"
},
"homepage": "https://github.com/NHSDigital/nhs-fhir-middy-error-handler#readme",
"files": [
"lib"
],
"main": "lib/index.js"
}