forked from spring-media/aws-lambda-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "aws-lambda-router",
"version": "0.9.1",
"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"
},
"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 <[email protected]> (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": "26.0.20",
"@types/node": "^8.10.59",
"codecov": "3.8.1",
"jest": "26.6.3",
"ts-jest": "26.5.2",
"typescript": "4.2.2"
},
"dependencies": {
"@types/aws-lambda": "8.10.66"
}
}