{
  "name": "jscodeshift-find-imports",
  "version": "2.0.5",
  "description": "find imported/required identifiers with jscodeshift",
  "main": "index.js",
  "author": "Andy Edwards",
  "license": "MIT",
  "scripts": {
    "lint": "eslint *.js test --cache",
    "lint:fix": "eslint --fix *.js test --cache",
    "lint:watch": "esw --watch *.js test --cache",
    "prettier": "prettier --write *.js test/**/*.js *.json *.md",
    "prettier:check": "prettier --list-different *.js test/**/*.js *.json *.md",
    "test": "cross-env NODE_ENV=production nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
    "test:watch": "mocha --watch $npm_package_config_mocha",
    "test:debug": "mocha --inspect-brk $npm_package_config_mocha",
    "codecov": "nyc report --reporter=text-lcov > coverage.lcov; codecov",
    "prepublishOnly": "npm run lint && npm test && tsc",
    "open:coverage": "open coverage/lcov-report/index.html",
    "semantic-release": "semantic-release"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e $GIT_PARAMS",
      "pre-commit": "lint-staged && npm run lint",
      "pre-push": "npm test"
    }
  },
  "lint-staged": {
    "*.{js,json,css,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "config": {
    "mocha": "test/configure.js test/**/*.js",
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "commitlint": {
    "extends": [
      "@jedwards1211/commitlint-config"
    ]
  },
  "nyc": {
    "include": [
      "*.js"
    ],
    "exclude": [
      "commitlint.config.js"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/codemodsquad/jscodeshift-find-imports.git"
  },
  "keywords": [
    "jscodeshift"
  ],
  "bugs": {
    "url": "https://github.com/codemodsquad/jscodeshift-find-imports/issues"
  },
  "homepage": "https://github.com/codemodsquad/jscodeshift-find-imports#readme",
  "devDependencies": {
    "@babel/core": "^7.11.6",
    "@babel/generator": "^7.9.5",
    "@babel/preset-env": "^7.11.5",
    "@commitlint/cli": "^6.0.2",
    "@commitlint/config-conventional": "^6.0.2",
    "@jedwards1211/commitlint-config": "^1.0.0",
    "@jedwards1211/eslint-config": "^2.0.0",
    "@types/jscodeshift": "^0.7.1",
    "chai": "^4.1.2",
    "codecov": "^3.0.0",
    "cross-env": "^5.2.0",
    "eslint": "^4.16.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-watch": "^3.1.3",
    "husky": "^1.1.4",
    "istanbul": "^0.4.5",
    "jscodeshift": "^0.11.0",
    "lint-staged": "^8.0.4",
    "lodash": "^4.17.15",
    "mocha": "^5.0.0",
    "nyc": "^11.4.1",
    "prettier": "^1.15.1",
    "prettier-eslint": "^8.8.2",
    "semantic-release": "^15.13.12",
    "typescript": "^3.8.2"
  },
  "renovate": {
    "extends": [
      ":separateMajorReleases",
      ":combinePatchMinorReleases",
      ":ignoreUnstable",
      ":prImmediately",
      ":renovatePrefix",
      ":updateNotScheduled",
      ":preserveSemverRanges",
      ":semanticPrefixFix",
      ":automergeDisabled",
      "group:monorepos"
    ],
    "automerge": true,
    "major": {
      "automerge": false
    }
  },
  "peerDependencies": {
    "jscodeshift": ">=0.7 <1"
  }
}
