-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.71 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
48
49
50
51
{
"name": "@nodeboot/lambda-server",
"version": "1.3.0",
"description": "Node-Boot AWS Lambda server package. It provides a simple way to create Lambda handlers using NodeBoot, with support for routing, middleware, and request handling.",
"author": "Manuel Santos <ney.br.santos@gmail.com>",
"license": "MIT",
"keywords": [
"nodeboot",
"lambda",
"aws",
"serverless"
],
"repository": {
"type": "git",
"url": "https://github.com/nodejs-boot/node-boot.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean:build": "rimraf ./dist",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "pnpm lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"pretest": "pnpm run clean:build && pnpm run build",
"test": "node --test --test-reporter node-test-reporter --require ts-node/register test/**/*.{test,it.test}.ts",
"test:coverage": "node --experimental-test-coverage --test --test-reporter node-test-reporter --require ts-node/register test/**/*.{test,it.test}.ts",
"tsc": "tsc"
},
"dependencies": {
"@nodeboot/context": "workspace:*",
"@nodeboot/core": "workspace:*",
"@nodeboot/engine": "workspace:*",
"@nodeboot/error": "workspace:*",
"find-my-way": "^9.3.0",
"cookie": "^1.0.2"
},
"devDependencies": {
"@types/node": "^24.0.1",
"@types/aws-lambda": "^8.10.155"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}