@certenza/aws-cdk-infrastructure-commons 2.6.5 → 2.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +56 -53
package/package.json CHANGED
@@ -1,54 +1,57 @@
1
1
  {
2
- "name": "@certenza/aws-cdk-infrastructure-commons",
3
- "version": "2.6.5",
4
- "description": "Common infrastructure reusable utilities and resources for Certenza projects",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist/**/*"
9
- ],
10
- "scripts": {
11
- "build": "tsc",
12
- "clean_up": "rimraf dist",
13
- "prebuild": "npm run clean_up",
14
- "prepublishOnly": "npm run build",
15
- "test": "echo \"Error: no test specified\" && exit 1",
16
- "format": "prettier --write .",
17
- "format:check": "prettier --check .",
18
- "git_clean": "sh -c 'git checkout main && git pull origin main && git branch -D \"$1\" && git remote update origin --prune' sh",
19
- "git_release": "sh -c 'git add . && git commit -m \"$1\" && git push origin \"$1\"' sh",
20
- "clean": "npm run git_clean -- ",
21
- "release": "npm run git_release -- "
22
- },
23
- "keywords": [
24
- "aws",
25
- "cdk",
26
- "infrastructure",
27
- "typescript"
28
- ],
29
- "author": "Certenza",
30
- "license": "MIT",
31
- "publishConfig": {
32
- "access": "restricted"
33
- },
34
- "repository": {
35
- "type": "git",
36
- "url": "git+https://github.com/certenza/aws-cdk-infrastructure-commons.git"
37
- },
38
- "bugs": {
39
- "url": "https://github.com/certenza/aws-cdk-infrastructure-commons/issues"
40
- },
41
- "homepage": "https://github.com/certenza/aws-cdk-infrastructure-commons#readme",
42
- "dependencies": {
43
- "aws-cdk-lib": "^2.248.0"
44
- },
45
- "devDependencies": {
46
- "@types/node": "^24.0.0",
47
- "prettier": "^3.8.2",
48
- "rimraf": "^6.1.2",
49
- "typescript": "^5.9.3"
50
- },
51
- "engines": {
52
- "node": ">=24.0.0"
53
- }
54
- }
2
+ "name": "@certenza/aws-cdk-infrastructure-commons",
3
+ "version": "2.6.9",
4
+ "description": "Common infrastructure reusable utilities and resources for Certenza projects",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist/**/*"
9
+ ],
10
+ "keywords": [
11
+ "aws",
12
+ "cdk",
13
+ "infrastructure",
14
+ "typescript"
15
+ ],
16
+ "author": "Certenza",
17
+ "license": "MIT",
18
+ "publishConfig": {
19
+ "access": "restricted"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/certenza/aws-cdk-infrastructure-commons.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/certenza/aws-cdk-infrastructure-commons/issues"
27
+ },
28
+ "homepage": "https://github.com/certenza/aws-cdk-infrastructure-commons#readme",
29
+ "dependencies": {
30
+ "aws-cdk-lib": "^2.254.0"
31
+ },
32
+ "peerDependencies": {
33
+ "constructs": "^10.3.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^24.0.0",
37
+ "constructs": "^10.6.0",
38
+ "prettier": "^3.8.3",
39
+ "rimraf": "^6.1.2",
40
+ "typescript": "^5.9.3"
41
+ },
42
+ "engines": {
43
+ "node": ">=24.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "tsc",
47
+ "clean_up": "rimraf dist",
48
+ "prebuild": "pnpm run clean_up",
49
+ "test": "echo \"Error: no test specified\" && exit 1",
50
+ "format": "prettier --write .",
51
+ "format:check": "prettier --check .",
52
+ "git_clean": "sh -c 'git checkout main && git pull origin main && git branch -D \"$1\" && git remote update origin --prune' sh",
53
+ "git_release": "sh -c 'git add . && git commit -m \"$1\" && git push origin \"$1\"' sh",
54
+ "clean": "pnpm run git_clean",
55
+ "release": "pnpm run git_release"
56
+ }
57
+ }