-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
68 lines (68 loc) · 1.78 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
{
"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": "5.0.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": "tap -J -R specy --no-coverage test/*test.js",
"test:typescript": "tsd",
"performance": "npm run lint && node performanceTest/test",
"preversion": "npm run test && git push",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@fastify/multipart": "^9.0.0",
"@fastify/pre-commit": "^2.1.0",
"@h4ad/serverless-adapter": "4.4.0",
"@types/aws-lambda": "8.10.146",
"aws-serverless-express": "^3.4.0",
"aws-serverless-fastify": "^3.1.0",
"benchmark": "^2.1.4",
"eslint": "^9.11.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^5.0.0",
"serverless-http": "^3.2.0",
"tap": "^16.3.9",
"tsd": "^0.31.0"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}