-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
97 lines (97 loc) · 2.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "serverless-http",
"version": "3.2.0",
"description": "Use existing web application frameworks in serverless environments",
"main": "serverless-http.js",
"types": "serverless-http.d.ts",
"engines": {
"node": ">=12.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/dougmoscrop/serverless-http"
},
"scripts": {
"pretest": "tsc --strict --skipLibCheck --noEmit test/typecheck.ts",
"test": "nyc mocha",
"posttest": "eslint lib test",
"test:integration:offline": "mocha test/integration/test-offline.js --exit",
"test:integration:aws": "mocha test/integration/test-aws.js --exit",
"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)",
"Daniel Martin (https://github.com/daniel-ac-martin)"
],
"homepage": "https://github.com/dougmoscrop/serverless-http",
"license": "MIT",
"devDependencies": {
"@loopback/rest": "^11.1.2",
"@types/koa": "^2.11.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cookie-parser": "^1.4.4",
"eslint": "^8.12.0",
"eslint-plugin-mocha": "^10.0.3",
"express": "^4.17.1",
"fastify": "^3.27.4",
"get-stream": "^5.1.0",
"hapi": "^18.1.0",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.3.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^5.1.0",
"koa-route": "^3.2.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"lambda-log": "^3.1.0",
"mocha": "^9.2.2",
"morgan": "^1.9.1",
"nyc": "^15.0.0",
"on-finished": "^2.3.0",
"on-headers": "^1.0.2",
"pino": "^8.15.0",
"pino-http": "^8.5.0",
"polka": "^0.5.2",
"reflect-metadata": "^0.1.13",
"restana": "^4.0.7",
"sails": "^1.2.3",
"serverless": "^3.10.2",
"serverless-offline": "^12.0.4",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-custom-binary": "^2.0.0",
"serverless-plugin-include-dependencies": "^5.0.0",
"sinon": "^13.0.1",
"supertest": "^6.2.2",
"tree-kill": "^1.2.2",
"typescript": "^4.6.3"
}
}