forked from oprimus/aws-lambda-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "aws-lambda-router",
"version": "0.8.3",
"description": "AWS lambda router",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "yarn clean && jest --coverage",
"build": "tsc",
"clean": "rm -f lib/*.d.ts lib/*.js index.js index.d.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spring-media/aws-lambda-router.git"
},
"keywords": [
"aws",
"lambda",
"apigateway",
"any",
"sns",
"router",
"routing",
"s3"
],
"author": "Christian Gohlke <christian.gohlke@spring-media.de> (https://www.welt.de)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spring-media/aws-lambda-router/issues"
},
"homepage": "https://github.com/spring-media/aws-lambda-router#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"codecov": "^3.6.5",
"jest": "25.3.0",
"ts-jest": "25.3.1",
"typescript": "3.8.3"
},
"dependencies": {
"@types/aws-lambda": "^8.10.50"
}
}