UNPKG

cdk-rds-sql

Version:

A CDK construct that allows creating roles or users and databases an on Aurora Serverless Postgresql or Mysql/MariaDB cluster.

171 lines (170 loc) 4.57 kB
{ "name": "cdk-rds-sql", "description": "A CDK construct that allows creating roles or users and databases an on Aurora Serverless Postgresql or Mysql/MariaDB cluster.", "repository": { "type": "git", "url": "https://github.com/berenddeboer/cdk-rds-sql.git" }, "scripts": { "build": "npx projen build", "build:handler": "npx projen build:handler", "bump": "npx projen bump", "clobber": "npx projen clobber", "compat": "npx projen compat", "compile": "npx projen compile", "copy:handler": "npx projen copy:handler", "default": "npx projen default", "eject": "npx projen eject", "eslint": "npx projen eslint", "integ:deploy:mysql:serverless": "npx projen integ:deploy:mysql:serverless", "integ:deploy:postgresql:serverless": "npx projen integ:deploy:postgresql:serverless", "integ:destroy:serverless": "npx projen integ:destroy:serverless", "package": "npx projen package", "package-all": "npx projen package-all", "package:js": "npx projen package:js", "post-compile": "npx projen post-compile", "post-upgrade": "npx projen post-upgrade", "pre-compile": "npx projen pre-compile", "release": "npx projen release", "test": "npx projen test", "test:watch": "npx projen test:watch", "typecheck": "npx projen typecheck", "unbump": "npx projen unbump", "upgrade": "npx projen upgrade", "watch": "npx projen watch", "projen": "npx projen" }, "author": { "name": "Berend de Boer", "email": "berend@pobox.com", "organization": false }, "devDependencies": { "@aws-sdk/client-secrets-manager": "^3.840.0", "@aws-sdk/client-ssm": "^3.840.0", "@types/jest": "~29", "@types/node": "^22", "@types/pg": "^8.11.11", "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", "aws-cdk-lib": "2.189.1", "commit-and-tag-version": "^12", "constructs": "10.3.0", "esbuild": "0.25.6", "eslint": "^9", "eslint-config-prettier": "^8.10.0", "eslint-import-resolver-typescript": "^3.10.1", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^4.2.1", "exponential-backoff": "^3.1.2", "jest": "~29", "jest-junit": "^16", "jsii": "~5.7.0", "jsii-diff": "^1.112.0", "jsii-pacmak": "^1.112.0", "jsii-rosetta": "~5.7.0", "mysql2": "^3.14.1", "node-pg-format": "^1.3.5", "pg": "^8.13.3", "prettier": "^2.8.8", "projen": "^0.94.0", "source-map-support": "^0.5.21", "testcontainers": "11", "ts-jest": "~29", "ts-node": "^10.9.2", "typescript": "~5.8" }, "peerDependencies": { "aws-cdk-lib": "^2.189.1", "constructs": "^10.3.0" }, "dependencies": { "@types/aws-lambda": "^8.10.150" }, "bundledDependencies": [ "@types/aws-lambda" ], "keywords": [ "aurora", "aws", "aws-cdk", "cdk", "mysql", "postgres", "rds" ], "engines": { "node": ">= 22.14" }, "main": "lib/index.js", "license": "Apache-2.0", "publishConfig": { "access": "public" }, "version": "6.1.4", "jest": { "coverageProvider": "v8", "testMatch": [ "<rootDir>/@(src|test|lambda)/**/*(*.)@(spec|test).ts", "<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)", "<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)", "<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)", "<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)" ], "testPathIgnorePatterns": [ "/node_modules/", "/cdk.out/", "/.github/", "/dist/" ], "maxConcurrency": 4, "maxWorkers": 4, "clearMocks": true, "collectCoverage": true, "coverageReporters": [ "json", "lcov", "clover", "cobertura", "text" ], "coverageDirectory": "coverage", "coveragePathIgnorePatterns": [ "/node_modules/", "/cdk.out/", "/.github/", "/dist/" ], "watchPathIgnorePatterns": [ "/node_modules/" ], "reporters": [ "default", [ "jest-junit", { "outputDirectory": "test-reports" } ] ], "transform": { "^.+\\.[t]sx?$": [ "ts-jest", { "tsconfig": "tsconfig.dev.json" } ] } }, "types": "lib/index.d.ts", "stability": "stable", "jsii": { "outdir": "dist", "targets": {}, "tsc": { "outDir": "lib", "rootDir": "src" } }, "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"." }