forked from muratcorlu/lambda-expressless
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "lambda-expressless",
"version": "3.0.0",
"description": "Wrap AWS Lambda functions with Express-like functions to simplify your code",
"source": "src/lambda-wrapper.ts",
"main": "dist/lambda-wrapper.js",
"types": "dist/lambda-wrapper.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"coverage": "jest --coverage"
},
"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/jest": "29.0.0",
"jest": "^29.0.0",
"prettier": "^2.1.2",
"router": "^1.3.3",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/accepts": "1.3.5",
"@types/aws-lambda": "^8.10.133",
"@types/node": "^20.11.6",
"@types/qs": "^6.9.7",
"@types/type-is": "1.6.2",
"accepts": "^1.3.7",
"qs": "^6.11.0",
"type-is": "^1.6.18"
}
}