{
  "name": "gitpair",
  "version": "1.5.4",
  "license": "MIT",
  "engines": {
    "node": ">=10"
  },
  "author": "Benoit d'Oncieu <bdoncieu@gmail.com>",
  "description": "Allow you to commit with more than one person, e.g. Pair programming or Mob programming.",
  "homepage": "https://github.com/bdo/gitpair.git",
  "repository": {
    "type": "git",
    "url": "https://github.com/bdo/gitpair.git"
  },
  "keywords": [
    "git",
    "pair-programming",
    "mob-programming"
  ],
  "bugs": {
    "url": "https://github.com/bdo/gitpair.git/issues"
  },
  "main": "./src/index.js",
  "bin": {
    "gitpair": "./bin/gitpair.js",
    "git-pair": "./bin/gitpair.js"
  },
  "scripts": {
    "prepublishOnly": "yarn build",
    "build": "webpack --mode production",
    "watch": "yarn build --watch",
    "lint": "eslint .",
    "test": "jest"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged && lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ]
  },
  "jest": {
    "setupFiles": [
      "./src/testSetup"
    ]
  },
  "devDependencies": {
    "@babel/cli": "^7.12.13",
    "@babel/core": "^7.12.13",
    "@babel/node": "^7.12.13",
    "@babel/preset-env": "^7.12.13",
    "@babel/register": "^7.12.13",
    "@semantic-release/changelog": "^5.0.1",
    "@semantic-release/git": "^9.0.0",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.1.0",
    "babel-plugin-source-map-support": "^2.0.1",
    "chalk": "^4.0.0",
    "clipboardy": "^2.3.0",
    "core-js": "^3.0.1",
    "debug": ">=2.6.9",
    "eslint": "^7.19.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-jest": "^24.1.3",
    "eslint-plugin-prettier": "^3.0.1",
    "husky": "^4.0.3",
    "jest": "^26.6.3",
    "lint-staged": "^10.1.1",
    "prettier": "^2.0.2",
    "pretty-quick": "^3.1.0",
    "semantic-release": "^17.0.1",
    "webpack": "^5.20.2",
    "webpack-cli": "^4.5.0"
  },
  "resolutions": {
    "mem": ">=4.0.0",
    "yargs-parser": ">=13.1.2"
  }
}
