-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.95 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": "compliance-constructs",
"version": "0.1.0",
"description": "Reusable AWS CDK constructs with SOC 2 safeguards pre-configured and validated by cdk-nag.",
"license": "MIT",
"author": "Sanjay Shukla",
"homepage": "https://github.com/ctrldeploy/compliance-constructs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ctrldeploy/compliance-constructs.git"
},
"bugs": {
"url": "https://github.com/ctrldeploy/compliance-constructs/issues"
},
"keywords": [
"cdk",
"aws-cdk",
"awscdk",
"aws",
"soc2",
"compliance",
"cdk-nag",
"security",
"infrastructure-as-code"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist/ cdk.out/",
"cdk": "cdk",
"synth": "cdk synth",
"test": "jest",
"test:nag": "jest compliance",
"format": "biome format --write .",
"lint": "biome lint --write .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && biome check --write .",
"ci": "npm run typecheck && biome ci . && npm test",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"aws-cdk-lib": "^2.257.0",
"cdk-nag": "^2.38.2",
"constructs": "^10.5.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.20.0",
"aws-cdk": "2.1128.1",
"aws-cdk-lib": "^2.260.0",
"cdk-nag": "^2.38.2",
"constructs": "^10.5.1",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "~6.0.3"
}
}