forked from sheplu/aws-safe-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "@sheplu/aws-safe-modules",
"version": "0.1.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"keywords": ["cdktf", "aws", "security", "compliance", "iac", "terraform"],
"description": "A collection of CDKTF modules for AWS, with security and compliance in mind",
"scripts": {
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"lint": "eslint ."
},
"engines": {
"node": ">=22.0"
},
"dependencies": {
"@cdktf/provider-aws": "21.10.1",
"ajv": "^8.17.1",
"cdktf": "^0.21.0",
"constructs": "^10.4.2"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.3",
"eslint": "^9.35.0",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
}
}