-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "@openapi-ts/aws-lambda",
"version": "1.0.4",
"description": "AWS Lambda implementation of @openapi-ts/backend. This provides simple mapping from AWS Lambda HTTP events to typed OpenAPI request handlers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"lint": "eslint src --ext js,ts --max-warnings 0",
"prepublish": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henhal/openapi-ts-aws-lambda.git"
},
"keywords": [
"OpenAPI",
"AWS",
"Lambda",
"HTTP",
"request",
"response",
"TypeScript",
"backend"
],
"author": "Henrik Hall",
"license": "MIT",
"bugs": {
"url": "https://github.com/henhal/openapi-ts-aws-lambda/issues"
},
"homepage": "https://github.com/henhal/openapi-ts-aws-lambda#readme",
"dependencies": {
"@openapi-ts/backend": "^2.0.5"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.76"
},
"publishConfig": {
"access": "public"
}
}