{
  "name": "@mapbox/cloudfriend",
  "version": "9.4.3",
  "description": "Helper functions for assembling CloudFormation templates in JavaScript",
  "main": "index.js",
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "pretest": "npm run lint && npm run shortcuts-api-doc",
    "lint": "eslint index.js test lib bin",
    "lint:fix": "npm run lint -- --fix",
    "test": "jest --coverage",
    "test:update": "jest --updateSnapshot",
    "build-ci-template": "bin/build-template.js cloudformation/ci.template.js > cloudformation/ci.template.json",
    "shortcuts-api-doc": "jsdoc2md lib/shortcuts/*.js > lib/shortcuts/api.md"
  },
  "bin": {
    "build-template": "bin/build-template.js",
    "validate-template": "bin/validate-template.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mapbox/cloudfriend.git"
  },
  "keywords": [
    "AWS",
    "CloudFormation"
  ],
  "author": "Mapbox",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/mapbox/cloudfriend/issues"
  },
  "homepage": "https://github.com/mapbox/cloudfriend#readme",
  "devDependencies": {
    "@mapbox/eslint-config-mapbox": "^5.0.1",
    "eslint": "^8.57.0",
    "eslint-plugin-node": "^6.0.1",
    "jest": "^29.7.0",
    "jsdoc-to-markdown": "^9.1.3"
  },
  "dependencies": {
    "@aws-sdk/client-cloudformation": "^3.1004.0",
    "minimist": "^1.2.6",
    "redent": "^2.0.0"
  },
  "eslintConfig": {
    "extends": "@mapbox/eslint-config-mapbox",
    "env": {
      "jest": true
    },
    "ignorePatterns": [
      "test/fixtures/malformed.json"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
