-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 885 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 885 Bytes
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
{
"name": "session-management-lambda",
"version": "1.0.0",
"description": "Session Management Lambda",
"main": "lib/src/handler.js",
"author": "NHS Digital",
"license": "MIT",
"scripts": {
"unit": "POWERTOOLS_DEV=true NODE_OPTIONS=--experimental-vm-modules jest --no-cache --coverage",
"lint": "eslint --max-warnings 0 --fix --config ../../eslint.config.mjs .",
"compile": "tsc --build",
"test": "npm run compile && npm run unit",
"check-licenses": "license-checker --failOn GPL --failOn LGPL --start ../.."
},
"dependencies": {
"@aws-lambda-powertools/commons": "^2.27.0",
"@aws-lambda-powertools/logger": "^2.24.0",
"@aws-lambda-powertools/parameters": "^2.27.0",
"@middy/core": "^6.4.5",
"@middy/input-output-logger": "^6.4.5"
},
"devDependencies": {
"axios-mock-adapter": "^2.1.0",
"esbuild": "^0.25.10"
}
}