-
-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.45 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@middy/cloudformation-response",
"version": "7.1.5",
"description": "CloudFormation Custom Response event response handling for the middy framework",
"type": "module",
"engines": {
"node": ">=22"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
},
"module": "./index.js",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"default": "./index.js"
}
}
},
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "npm run test:unit && npm run test:fuzz",
"test:unit": "node --test",
"test:fuzz": "node --test index.fuzz.js",
"test:perf": "node --test index.perf.js"
},
"license": "MIT",
"keywords": [
"Lambda",
"Middleware",
"Serverless",
"Framework",
"AWS",
"AWS Lambda",
"Middy",
"CloudFormation",
"Custom Response"
],
"author": {
"name": "Middy contributors",
"url": "https://github.com/middyjs/middy/graphs/contributors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/middyjs/middy.git",
"directory": "packages/cloudformation-response"
},
"bugs": {
"url": "https://github.com/middyjs/middy/issues"
},
"homepage": "https://middy.js.org",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/willfarrell"
},
"devDependencies": {
"@middy/core": "7.1.5",
"@types/aws-lambda": "^8.0.0",
"@types/node": "^22.0.0"
}
}