{
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
  "name": "constructs",
  "description": "A programming model for composable configuration",
  "repository": {
    "type": "git",
    "url": "https://github.com/aws/constructs.git"
  },
  "bin": {},
  "scripts": {
    "start": "npx projen start -i",
    "projen": "node .projenrc.js",
    "no-changes": "(git log --oneline -1 | grep -q \"chore(release):\") && echo \"No changes to release.\"",
    "bump": "yarn run --silent no-changes || standard-version",
    "release": "yarn run --silent no-changes || (yarn run bump && git push --follow-tags origin master)",
    "test": "rm -fr lib/ && jest --passWithNoTests --updateSnapshot && yarn run eslint",
    "test:watch": "jest --watch",
    "test:update": "jest --updateSnapshot",
    "projen:upgrade": "yarn upgrade -L projen && CI=\"\" yarn projen",
    "compile": "jsii --silence-warnings=reserved-word --no-fix-peer-dependencies && jsii-docgen && yarn run compat",
    "watch": "jsii -w --silence-warnings=reserved-word --no-fix-peer-dependencies",
    "build": "yarn run test && yarn run compile && yarn run package",
    "package": "jsii-pacmak",
    "eslint": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern src test",
    "compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\") -k --ignore-file .compatignore || (echo \"\nUNEXPECTED BREAKING CHANGES: add keys such as 'removed:constructs.Node.of' to .compatignore to skip.\n\" && exit 1)",
    "docgen": "jsii-docgen"
  },
  "author": {
    "name": "Amazon Web Services",
    "url": "https://aws.amazon.com",
    "organization": true
  },
  "homepage": "https://github.com/aws/constructs",
  "devDependencies": {
    "@types/jest": "^26.0.7",
    "@types/node": "^10.17.0",
    "@typescript-eslint/eslint-plugin": "^4.3.0",
    "@typescript-eslint/parser": "^4.3.0",
    "eslint": "^6.8.0",
    "eslint-import-resolver-node": "^0.3.3",
    "eslint-import-resolver-typescript": "^2.0.0",
    "eslint-plugin-import": "^2.20.2",
    "jest": "^26.4.2",
    "jsii": "^1.11.0",
    "jsii-diff": "^1.11.0",
    "jsii-docgen": "^1.3.2",
    "jsii-pacmak": "^1.11.0",
    "jsii-release": "^0.1.6",
    "json-schema": "^0.2.5",
    "projen": "^0.3.161",
    "standard-version": "^9.0.0",
    "ts-jest": "^26.1.0",
    "typescript": "^3.9.5"
  },
  "peerDependencies": {},
  "dependencies": {},
  "bundledDependencies": [],
  "keywords": [
    "aws",
    "cdk",
    "constructs",
    "jsii"
  ],
  "engines": {
    "node": ">= 10.17.0"
  },
  "main": "lib/index.js",
  "license": "Apache-2.0",
  "start": {
    "start": {
      "command": "yarn run start",
      "desc": "Shows this menu"
    },
    "projen": {
      "desc": "Synthesize project configuration from .projenrc.js",
      "command": "yarn run projen",
      "category": 3
    },
    "bump": {
      "desc": "Commits a bump to the package version based on conventional commits",
      "command": "yarn run bump",
      "category": 2
    },
    "release": {
      "desc": "Bumps version & push to master",
      "command": "yarn run release",
      "category": 2
    },
    "test": {
      "desc": "Run tests",
      "command": "yarn run test",
      "category": 1
    },
    "test:watch": {
      "desc": "Run jest in watch mode",
      "command": "yarn run test:watch",
      "category": 1
    },
    "projen:upgrade": {
      "desc": "upgrades projen to the latest version",
      "command": "yarn run projen:upgrade",
      "category": 3
    },
    "compile": {
      "desc": "Only compile",
      "command": "yarn run compile",
      "category": 0
    },
    "watch": {
      "desc": "Watch & compile in the background",
      "command": "yarn run watch",
      "category": 0
    },
    "build": {
      "desc": "Full release build (test+compile)",
      "command": "yarn run build",
      "category": 0
    },
    "package": {
      "desc": "Create an npm tarball",
      "command": "yarn run package",
      "category": 2
    },
    "eslint": {
      "desc": "Runs eslint against the codebase",
      "command": "yarn run eslint",
      "category": 1
    },
    "compat": {
      "desc": "Perform API compatibility check against latest version",
      "command": "yarn run compat",
      "category": 2
    },
    "docgen": {
      "desc": "Generate API.md from .jsii manifest",
      "command": "yarn run docgen",
      "category": 2
    }
  },
  "version": "3.2.19",
  "jest": {
    "clearMocks": true,
    "collectCoverage": true,
    "coverageDirectory": "coverage",
    "coveragePathIgnorePatterns": [
      "/node_modules/"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/"
    ],
    "testMatch": [
      "**/__tests__/**/*.ts?(x)",
      "**/?(*.)+(spec|test).ts?(x)"
    ],
    "preset": "ts-jest",
    "globals": {
      "ts-jest": {
        "tsconfig": "tsconfig.jest.json"
      }
    }
  },
  "types": "lib/index.d.ts",
  "stability": "stable",
  "jsii": {
    "outdir": "dist",
    "targets": {
      "java": {
        "package": "software.constructs",
        "maven": {
          "groupId": "software.constructs",
          "artifactId": "constructs"
        }
      },
      "python": {
        "distName": "constructs",
        "module": "constructs"
      },
      "dotnet": {
        "namespace": "Constructs",
        "packageId": "Constructs"
      }
    },
    "tsc": {
      "outDir": "lib",
      "rootDir": "src"
    }
  }
}