-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@fastify/aws-lambda",
"description": "Inspired by aws-serverless-express to work with Fastify with inject functionality.",
"keywords": [
"aws",
"lambda",
"serverless",
"amazon",
"cloud",
"node",
"nodejs",
"javascript",
"proxy",
"api",
"api-gateway",
"fastify",
"web"
],
"homepage": "https://github.com/fastify/aws-lambda-fastify",
"author": "Adriano Raiano <adriano@raiano.ch>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fastify/aws-lambda-fastify.git"
},
"bugs": {
"url": "https://github.com/fastify/aws-lambda-fastify/issues"
},
"license": "MIT",
"version": "6.4.0",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "node scripts/unit.js",
"test:typescript": "tsd",
"performance": "npm run lint && node performanceTest/test",
"preversion": "npm run test && git push",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.4",
"@eslint/js": "10.0.1",
"@fastify/multipart": "^9.3.0",
"@h4ad/serverless-adapter": "4.4.0",
"@types/aws-lambda": "8.10.161",
"@types/node": "^25.0.3",
"aws-serverless-express": "^3.4.0",
"aws-serverless-fastify": "^3.1.3",
"benchmark": "^2.1.4",
"eslint": "^10.0.2",
"fast-glob": "^3.3.3",
"fastify": "^5.6.2",
"neostandard": "^0.12.2",
"serverless-http": "^4.0.0",
"tsd": "^0.33.0"
},
"publishConfig": {
"access": "public"
}
}