{
  "name": "react-native-rename",
  "version": "3.2.17",
  "description": "Rename react-native app with just one command",
  "main": "lib/index.js",
  "scripts": {
    "test": "jest",
    "dev": "esbuild src/index.js --platform=node --bundle --outdir=lib --external:shelljs --watch",
    "build": "esbuild src/index.js --platform=node --bundle --outdir=lib --external:shelljs --minify --analyze",
    "prepublish": "npm run build",
    "relink": "npm unlink react-native-rename && npm run prepublish && npm link",
    "format": "prettier --write 'src/*.{js,jsx}'",
    "lint": "eslint 'src/*.{js,jsx}'"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "**/*.js": [
      "npm run format",
      "npm run lint --fix"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/junedomingo/react-native-rename.git"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "rename",
    "renamer",
    "react",
    "space"
  ],
  "author": {
    "email": "junedomingo@gmail.com",
    "name": "June Domingo"
  },
  "license": "MIT",
  "bin": {
    "react-native-rename": "lib/index.js"
  },
  "bugs": {
    "url": "https://github.com/junedomingo/react-native-rename/issues"
  },
  "homepage": "https://github.com/junedomingo/react-native-rename#readme",
  "devDependencies": {
    "esbuild": "^0.19.2",
    "eslint": "^8.47.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "lint-staged": "^14.0.0",
    "prettier": "^2.8.8"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "cheerio": "^1.0.0-rc.12",
    "commander": "^10.0.1",
    "dotenv": "^16.3.1",
    "globby": "^13.2.0",
    "html-entities": "^2.4.0",
    "normalize-path": "^3.0.0",
    "replace-in-file": "^7.0.1",
    "shelljs": "^0.8.5",
    "update-check": "^1.5.4"
  }
}