{
  "name": "amex-jest-preset",
  "description": "An opinionated Jest preset",
  "version": "7.0.0",
  "keywords": [
    "jest",
    "preset",
    "amex",
    "quality"
  ],
  "main": "jest-preset.js",
  "scripts": {
    "test": "npm run test:lint && npm run test:unit",
    "test:lint": "eslint ./ --ignore-path .gitignore --ext .js",
    "test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
    "test:git-history": "commitlint --from origin/main --to HEAD",
    "test:unit": "jest",
    "posttest": "npm run test:lockfile && npm run test:git-history",
    "prepublishOnly": "npm test"
  },
  "dependencies": {
    "is-ci": "^1.0.10",
    "mkdirp": "^0.5.1",
    "strip-ansi": "^5.0.0",
    "xmlbuilder": "^9.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^9.1.2",
    "@commitlint/config-conventional": "^17.3.0",
    "@semantic-release/changelog": "^6.0.0",
    "@semantic-release/commit-analyzer": "^9.0.0",
    "@semantic-release/git": "^10.0.0",
    "@semantic-release/github": "^8.0.0",
    "@semantic-release/npm": "^9.0.0",
    "@semantic-release/release-notes-generator": "^10.0.0",
    "eslint": "^7.32.0",
    "eslint-config-amex": "^15.3.1",
    "eslint-plugin-jest": "^24.7.0",
    "eslint-plugin-jest-dom": "^3.9.4",
    "githook-scripts": "^1.0.1",
    "husky": "^4.2.3",
    "jest": "^29.0.0",
    "lockfile-lint": "^4.3.7",
    "lodash": "^4.17.4",
    "semantic-release": "^19.0.0"
  },
  "peerDependencies": {
    "jest": ">=23.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/americanexpress/amex-jest-preset.git"
  },
  "files": [
    "jest-preset.js",
    "jest-setup.js",
    "html-report-creator.js",
    "html-report-style.js"
  ],
  "contributors": [
    "Andres Escobar",
    "Jamie King  <Jamie.King@aexp.com> (https://github.com/10xLaCroixDrinker)"
  ],
  "author": "Andres Escobar <andres.escobar@aexp.com> (https://github.com/anescobar1991)",
  "license": "Apache-2.0",
  "jest": {
    "preset": "./jest-preset.js",
    "coveragePathIgnorePatterns": [
      "<rootDir>/jest-setup.js",
      "<rootDir>/commitlint.config.js"
    ]
  },
  "release": {
    "branches": [
      "+([0-9])?(.{+([0-9]),x}).x",
      "main",
      "next",
      "next-major",
      {
        "name": "beta",
        "prerelease": true
      },
      {
        "name": "alpha",
        "prerelease": true
      }
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git",
      "@semantic-release/github"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  }
}
