forked from spring-media/aws-lambda-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
48
49
50
{
"name": "@clorofila/aws-lambda-router",
"version": "0.13.5",
"description": "AWS lambda router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"clean": "rimraf .dist/",
"build": "yarn clean && tsc",
"test": "yarn clean && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clorofila/aws-lambda-router"
},
"keywords": [
"aws",
"lambda",
"apigateway",
"any",
"sns",
"router",
"routing",
"s3"
],
"author": "Jorge Zapata <[email protected]> (http://jazg.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Clorofila/aws-lambda-router/issues"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "^8.10.59",
"codecov": "3.8.3",
"jest": "26.6.3",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "26.5.6",
"typescript": "4.2.4"
},
"dependencies": {
"@types/aws-lambda": "8.10.66"
}
}