-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1001 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1001 Bytes
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
{
"name": "swagger-lambda",
"version": "1.0.0",
"description": "Swagger Lambda Controller is an alternative solution to AWS API Gateway's lambda invokation built on NodeJS, Express, and the Swagger Tools Middleware",
"main": "index.js",
"scripts": {
"start": "node ./examples/index.js"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jakedahm/swagger-lambda.git"
},
"keywords": [
"Lambda",
"Swagger",
"Serverless",
"NodeJS"
],
"author": "Jake Dahm",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakedahm/swagger-lambda/issues"
},
"homepage": "https://github.com/jakedahm/swagger-lambda#readme",
"engines": {
"node": ">=6.10.3"
},
"dependencies": {
"aws-sdk": "^2.186.0",
"debug": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.16.0",
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"swagger-tools": "^0.10.3"
}
}