-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "@5d/aws-lambda-restricted-function",
"version": "0.1.11",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "echo 'no tests'"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js"
}
},
"keywords": [],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist"
],
"author": "",
"license": "MIT",
"homepage": "https://github.com/5d/aws-lambda-restricted-function",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/5d/aws-lambda-restricted-function.git"
},
"bugs": {
"url": "https://github.com/5d/aws-lambda-restricted-function/issues"
},
"description": "A wrapper construct for creating an AWS Lambda function with a default role that includes restrictive policies",
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.173.0",
"constructs": "^10.4.2"
}
}