{
  "name": "@nerdwallet/shepherd",
  "version": "3.0.0",
  "description": "A utility for applying code changes across many repositories",
  "type": "module",
  "keywords": [
    "codemod",
    "codemods",
    "migration"
  ],
  "homepage": "https://github.com/NerdWalletOSS/shepherd#readme",
  "bugs": {
    "url": "https://github.com/NerdWalletOSS/shepherd/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NerdWalletOSS/shepherd.git"
  },
  "license": "Apache-2.0",
  "author": "Nathan Walters",
  "contributors": [
    {
      "name": "Aori Nevo"
    },
    {
      "name": "Kavitha Kesavalu"
    }
  ],
  "main": "./lib/cli.js",
  "bin": {
    "shepherd": "./lib/cli.js"
  },
  "scripts": {
    "build": "tsc -p tsconfig.cjs.json",
    "build:watch": "yarn build --watch",
    "fix-lint": "eslint src/**/*.ts --fix && prettier --write .",
    "lint": "eslint src/**/*.ts && prettier --check .",
    "prepublishOnly": "yarn test && yarn build",
    "test": "jest --coverage src/",
    "e2e-test": "npm run build && jest --config=jest.e2e.config.js e2e/"
  },
  "files": [
    "lib"
  ],
  "dependencies": {
    "@octokit/core": "^6.1.2",
    "@octokit/plugin-retry": "^7.1.2",
    "@octokit/plugin-throttling": "^9.3.2",
    "@octokit/rest": "^21.0.2",
    "@types/js-yaml": "^4.0.9",
    "chalk": "^5.3.0",
    "child-process-promise": "^2.2.1",
    "table": "^6.8.1",
    "commander": "^12.1.0",
    "fs-extra": "^11.2.0",
    "joi": "^17.13.3",
    "js-yaml": "^4.1.0",
    "lodash": "^4.17.21",
    "log-symbols": "^7.0.0",
    "netrc": "^0.1.4",
    "ora": "^8.1.0",
    "preferences": "^2.0.2",
    "simple-git": "^3.27.0"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.25.7",
    "@babel/preset-typescript": "^7.25.7",
    "@eslint/js": "^9.12.0",
    "@octokit/plugin-rest-endpoint-methods": "^13.2.6",
    "@octokit/types": "^13.6.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.13",
    "@types/lodash": "^4.17.10",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.8.0",
    "@typescript-eslint/parser": "^8.8.0",
    "babel-jest": "^29.7.0",
    "conventional-changelog-conventionalcommits": "^9.0.0",
    "eslint": "^9.12.0",
    "eslint-config-prettier": "^10.0.0",
    "eslint-import-resolver-typescript": "^4.0.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "globals": "^16.0.0",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "semantic-release": "^24.1.2",
    "ts-jest": "^29.2.5",
    "typescript": "5.9",
    "typescript-eslint": "^8.8.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
