{
  "name": "fireway",
  "version": "1.1.0",
  "description": "Schema migration tool for Firestore",
  "types": "fireway.d.ts",
  "keywords": [
    "schema",
    "migration",
    "firestore",
    "typescript"
  ],
  "files": [
    "/src",
    "LICENSE",
    "README.md",
    "fireway.d.ts"
  ],
  "main": "src/index.js",
  "bin": "src/cli.js",
  "repository": "git@github.com:kevlened/fireway.git",
  "author": "kevlened <boyettel@gmail.com>",
  "license": "MIT",
  "scripts": {
    "setup": "firebase setup:emulators:firestore",
    "emulator": "firebase emulators:start --only firestore",
    "test-runner": "node tests",
    "pretest": "mkdir -p tests/emptyMigration",
    "test": "FIRESTORE_EMULATOR_HOST=localhost:8181 start-test emulator tcp:8181 test-runner",
    "release": "yarn test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm login && npm publish"
  },
  "husky": {
    "hooks": {
      "pre-push": "yarn test"
    }
  },
  "dependencies": {
    "@google-cloud/firestore": "^4.2.0",
    "callsites": "^3.1.0",
    "firebase-admin": "^9.2.0",
    "md5": "^2.2.1",
    "sade": "^1.6.1",
    "semver": "^6.3.0"
  },
  "devDependencies": {
    "@firebase/rules-unit-testing": "^1.0.4",
    "capture-console": "^1.0.1",
    "firebase-tools": "^10.1.2",
    "husky": "^4.2.5",
    "start-server-and-test": "^1.14.0",
    "tape": "^4.13.2",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3"
  }
}
