forked from dougmoscrop/serverless-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
69
70
71
72
73
74
{
"name": "serverless-http",
"version": "1.6.0",
"description": "Use koa or express/connect in AWS Lambda via API Gateway",
"main": "serverless-http.js",
"engines": {
"node": ">=4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/dougmoscrop/serverless-http"
},
"scripts": {
"test": "nyc mocha",
"posttest": "eslint .",
"preversion": "update-contrib",
"postpublish": "git push origin master --tags"
},
"keywords": [
"serverless",
"serverless applications",
"koa",
"express",
"connect",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services"
],
"author": "Doug Moscrop <[email protected]> (http://www.github.com/dougmoscrop)",
"contributors": [
"Doug Moscrop (https://github.com/dougmoscrop)",
"Kevin Groat (https://github.com/kgroat)",
"Kurt Miller (https://github.com/bsdkurt)",
"Roch Devost (https://github.com/rochdev)",
"Bryan Gamble (https://github.com/bdgamble)",
"Derek MacDonald (https://github.com/demacdonald)",
"Filip Skokan (https://github.com/panva)",
"Kevin Tonon (https://github.com/ktonon)",
"Mark Vayngrib (https://github.com/mvayngrib)",
"Tamás Máhr (https://github.com/tamasmahr)"
],
"homepage": "https://github.com/dougmoscrop/serverless-http",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"express": "^4.16.3",
"get-stream": "^3.0.0",
"istanbul": "^0.4.5",
"koa": "^1.4.0",
"koa-bodyparser": "^2.2.0",
"koa-compress": "^1.0.9",
"koa-route": "^2.4.2",
"koa-router": "^5.4.0",
"koa-serve": "^0.1.7",
"mocha": "^5.2.0",
"morgan": "^1.8.0",
"nyc": "^12.0.2",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"publish": "^0.6.0",
"sinon": "^5.1.1",
"update-contributors": "^0.3.1"
},
"dependencies": {}
}