-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 934 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
{
"name": "lambda-kernel",
"version": "2.2.1",
"description": "Kernel to handle request and response for AWS Lambda and Serverless",
"main": "index.js",
"scripts": {
"doc": "jsdoc2md --template README.hbs -f ./lib/**/* ./lib/* > README.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mcwebb/lambda-kernel.git"
},
"keywords": [
"lambda",
"serverless",
"kernel",
"request",
"response",
"middleware",
"dispatch"
],
"author": "Matthew Webb <matthewowebb@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcwebb/lambda-kernel/issues"
},
"engines": {
"node": ">=4.3.2"
},
"homepage": "https://github.com/mcwebb/lambda-kernel#readme",
"dependencies": {
"lodash.partialright": "^4.2.1"
},
"devDependencies": {
"jsdoc-to-markdown": "^3.0.0"
}
}