forked from CodeGenieApp/serverless-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 987 Bytes
/
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
{
"name": "aws-serverless-express",
"version": "3.0.2",
"description": "This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.",
"keywords": [
"aws",
"serverless",
"api",
"gateway",
"lambda",
"express"
],
"homepage": "https://github.com/awslabs/aws-serverless-express",
"bugs": {
"url": "https://github.com/awslabs/aws-serverless-express/issues"
},
"license": "Apache-2.0",
"files": [
"index.js",
"middleware.js",
"index.d.ts"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-serverless-express.git"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"jest": "^16.0.2"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"@types/aws-lambda": "https://github.com/ncoder/aws-lambda-types.git#master",
"binary-case": "^1.0.0"
}
}