-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
45
46
47
48
49
50
{
"name": "lambda-extension-hooks",
"version": "0.1.0",
"description": "Plug-and-play hook system for building AWS Lambda Extensions and injecting custom logic at each lifecycle stage of an AWS Lambda function.",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"No tests yet\"",
"build": "node index.js"
},
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"lib/*.js",
"README.md",
"LICENSE"
],
"keywords": [
"lambda-extension-hooks",
"aws",
"aws-lambda-extension",
"lambda",
"lambda-extension",
"lambda-extensions-api",
"lambda-hooks",
"lambda-lifecycle-hooks",
"lambda-layer",
"internal-extension",
"external-extension",
"invoke",
"shutdown",
"nodejs",
"esm"
],
"author": "Avraham Shemesh",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/protypus/lambda-extension-hooks.git"
},
"bugs": {
"url": "https://github.com/protypus/lambda-extension-hooks/issues"
},
"homepage": "https://github.com/protypus/lambda-extension-hooks#readme"
}