UNPKG

cdk-rds-sql

Version:

A CDK construct that allows creating roles or users and databases on Aurora Serverless PostgreSQL or MySQL/MariaDB clusters, as well as AWS DSQL clusters.

175 lines (174 loc) 4.77 kB
{ "name": "cdk-rds-sql", "description": "A CDK construct that allows creating roles or users and databases on Aurora Serverless PostgreSQL or MySQL/MariaDB clusters, as well as AWS DSQL clusters.", "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:dsql": "npx projen integ:deploy:dsql", "integ:deploy:mysql:serverless": "npx projen integ:deploy:mysql:serverless", "integ:deploy:postgresql:serverless": "npx projen integ:deploy:postgresql:serverless", "integ:destroy:dsql": "npx projen integ:destroy:dsql", "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.953.0", "@aws-sdk/client-ssm": "^3.953.0", "@aws-sdk/dsql-signer": "^3.953.0", "@types/jest": "~30", "@types/node": "^22", "@types/pg": "^8.11.11", "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", "aws-cdk-lib": "2.214.0", "commit-and-tag-version": "^12", "constructs": "10.4.2", "esbuild": "0.27.2", "eslint": "^9", "eslint-config-prettier": "^8.10.2", "eslint-import-resolver-typescript": "^3.10.1", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^4.2.5", "exponential-backoff": "^3.1.3", "jest": "~30", "jest-junit": "^16", "jsii": "~5.9.0", "jsii-diff": "^1.121.0", "jsii-pacmak": "^1.121.0", "jsii-rosetta": "~5.9.0", "mysql2": "^3.16.0", "node-pg-format": "^1.3.5", "pg": "^8.13.3", "prettier": "^2.8.8", "projen": "^0.98.30", "source-map-support": "^0.5.21", "testcontainers": "11", "ts-jest": "^29", "ts-node": "^10.9.2", "typescript": "~5.9" }, "peerDependencies": { "aws-cdk-lib": "^2.214.0", "constructs": "^10.4.2" }, "dependencies": { "@types/aws-lambda": "^8.10.159" }, "bundledDependencies": [ "@types/aws-lambda" ], "keywords": [ "aurora", "aws", "aws-cdk", "cdk", "dsql", "mysql", "postgres", "rds" ], "engines": { "node": ">= 22.14" }, "main": "lib/index.js", "license": "Apache-2.0", "publishConfig": { "access": "public" }, "version": "8.0.1", "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": "75%", "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\"." }