cdk-secure-string-parameter
Version:
SecureStringParameter Custom Resource for CDK. Enables storing encrypted secrets in version control and using those values in creating SSM SecureString Parameters
155 lines (154 loc) • 4.31 kB
JSON
{
"name": "cdk-secure-string-parameter",
"description": "SecureStringParameter Custom Resource for CDK. Enables storing encrypted secrets in version control and using those values in creating SSM SecureString Parameters",
"repository": {
"type": "git",
"url": "https://github.com/Saigonen/cdk-secure-string-parameter"
},
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"bundle": "npx projen bundle",
"bundle:lambda/secure-string-parameter-handler.lambda": "npx projen bundle:lambda/secure-string-parameter-handler.lambda",
"bundle:lambda/secure-string-parameter-handler.lambda:watch": "npx projen bundle:lambda/secure-string-parameter-handler.lambda:watch",
"clobber": "npx projen clobber",
"compat": "npx projen compat",
"compile": "npx projen compile",
"default": "npx projen default",
"docgen": "npx projen docgen",
"eject": "npx projen eject",
"eslint": "npx projen eslint",
"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",
"prepare": "npx projen prepare",
"release": "npx projen release",
"test": "npx projen test",
"test:watch": "npx projen test:watch",
"unbump": "npx projen unbump",
"upgrade": "npx projen upgrade",
"watch": "npx projen watch",
"projen": "npx projen"
},
"author": {
"name": "Matti Saikkonen",
"email": "matti.saikkonen@gmail.com",
"organization": false
},
"devDependencies": {
"@aws-sdk/client-kms": "3.825.0",
"@aws-sdk/client-ssm": "3.825.0",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@stylistic/eslint-plugin": "^2",
"@types/aws-lambda": "8.10.149",
"@types/jest": "29.5.14",
"@types/node": "22.15.30",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"aws-cdk-lib": "2.123.0",
"commit-and-tag-version": "^12",
"constructs": "10.0.5",
"esbuild": "0.25.5",
"eslint": "^9",
"eslint-import-resolver-typescript": "4.4.3",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "^16",
"jsii": "^5.8",
"jsii-diff": "1.112.0",
"jsii-docgen": "^10.5.0",
"jsii-pacmak": "1.112.0",
"jsii-rosetta": "^5.8",
"projen": "0.92.9",
"ts-jest": "29.3.4",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.123.0",
"constructs": "^10.0.5"
},
"dependencies": {
"uuid": "11.1.0"
},
"bundledDependencies": [
"uuid"
],
"keywords": [
"cdk",
"encrypted",
"parameter store",
"secure string parameter",
"securestring",
"ssm",
"stringparameter"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"version": "0.0.20",
"jest": {
"coverageProvider": "v8",
"testMatch": [
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
"<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"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": "experimental",
"jsii": {
"outdir": "dist",
"targets": {},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
}