-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1019 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
36
37
38
39
40
41
{
"name": "simple-lambda-router",
"type": "module",
"version": "2.0.0",
"description": "Small router utility for lambda functions handling HTTP events from multiple resources and methods",
"exports": "./index.mjs",
"scripts": {
"test": "cd test && mocha test-*.js"
},
"author": "Bruno Morency <bruno@morency.me>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"joi": "^17.9.1",
"mocha": "^10.2.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunomorency/simple-lambda-router.git"
},
"engines": {
"node": " >=14.13.1 || >=16.0.0"
},
"keywords": [
"lambda",
"routing",
"serverless",
"serverless-application-model",
"SAM",
"AWS"
],
"bugs": {
"url": "https://github.com/brunomorency/simple-lambda-router/issues"
},
"homepage": "https://github.com/brunomorency/simple-lambda-router#readme"
}