{
  "name": "@chatie/git-scripts",
  "version": "0.6.2",
  "description": "Git Hooks Integration for Chatie Projects",
  "directories": {
    "doc": "docs",
    "test": "tests"
  },
  "scripts": {
    "build": "tsc",
    "clean": "shx rm -fr dist/*",
    "dist": "npm run clean && npm run build",
    "pack": "npm pack",
    "lint": "npm run lint:es && npm run lint:ts",
    "lint:es": "eslint bin/**/*.ts src/**/*.ts tests/**/*.ts",
    "lint:ts": "tsc --noEmit",
    "postinstall": "node scripts/install.js",
    "test:pack": "bash -x scripts/npm-pack-testing.sh",
    "test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
    "test": "npm run lint && npm run test:unit"
  },
  "bin": {
    "git-scripts-pre-push": "dist/bin/pre-push.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Chatie/git-scripts.git"
  },
  "keywords": [
    "git",
    "scripts",
    "hooks",
    "pre-push"
  ],
  "author": "Huan LI <zixia@zixia.net>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/Chatie/git-scripts/issues"
  },
  "homepage": "https://github.com/Chatie/git-scripts#readme",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "git": {
    "scripts": {
      "pre-push": "ts-node ./bin/pre-push.ts"
    }
  },
  "dependencies": {
    "git-scripts": "^0.4.3",
    "pkg-up": "^3.1.0",
    "shelljs": "^0.8.3"
  },
  "devDependencies": {
    "@chatie/eslint-config": "^0.5.3",
    "@chatie/tsconfig": "^0.6.1",
    "@types/shelljs": "^0.8.5",
    "shx": "^0.3.2",
    "tstest": "^0.2.4"
  }
}