UNPKG

cdk-aspects

Version:

Useful aspects built to streamline CDK infra-as-code apps

77 lines 1.73 kB
{ "name": "cdk-aspects", "description": "Useful aspects built to streamline CDK infra-as-code apps", "author": "Brandon Burrus <brandon@burrus.io>", "license": "MIT", "homepage": "https://cdkaspects.com", "repository": { "type": "git", "url": "git+https://github.com/brandonburrus/cdk-aspects.git" }, "bugs": { "url": "https://github.com/brandonburrus/cdk-aspects/issues" }, "keywords": [ "aws", "cdk", "aspects", "infrastructure", "infra", "infrastructure-as-code", "infra-as-code", "utilities", "utils", "validation" ], "version": "0.0.0", "type": "commonjs", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "lint-staged": { "*.ts": [ "biome check --write --staged" ], "*.json": [ "biome check --write --staged" ], "*.yaml": [ "biome check --write --staged" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "peerDependencies": { "aws-cdk-lib": "^2.200.1", "constructs": "^10.4.2" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@types/jest": "^29.5.14", "@types/node": "^22.15.30", "aws-cdk-lib": "^2.200.1", "aws-sdk-client-mock": "^4.1.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^16.1.0", "rimraf": "^6.0.1", "sinon": "^20.0.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "scripts": { "build": "rimraf dist && tsc", "test": "jest", "biome": "biome check", "biome:fix": "biome check --fix" } }