-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 949 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
{
"name": "lambda-expressless",
"version": "0.0.0-development",
"description": "Wrap AWS Lambda functions with Express-like functions to simplify your code",
"main": "src/lambda-wrapper.js",
"scripts": {
"test": "jest --coverage",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/muratcorlu/lambda-expressless.git"
},
"author": "Murat Corlu",
"license": "MIT",
"bugs": {
"url": "https://github.com/muratcorlu/lambda-expressless/issues"
},
"homepage": "https://github.com/muratcorlu/lambda-expressless#readme",
"devDependencies": {
"@types/accepts": "^1.3.5",
"@types/aws-lambda": "^8.10.40",
"@types/connect": "^3.4.33",
"body-parser": "^1.20.0",
"jest": "^28.1.2",
"semantic-release": "^19.0.3"
},
"dependencies": {
"accepts": "^1.3.7",
"type-is": "^1.6.18"
}
}