{
  "name": "core",
  "version": "0.1.14",
  "description": "Sync selected collections from firebase-firestore to local sqlite database",
  "main": "build/index.js",
  "module": "build/index.es.js",
  "jsnext:main": "build/index.es.js",
  "types": "build/types/index.d.ts",
  "scripts": {
    "watch": "rollup -c -w",
    "build": "rollup -c && tsc -d --emitDeclarationOnly --declarationDir build/types",
    "format": "prettier --write \"src/*.ts\"",
    "lint": "tslint -p tsconfig.json",
    "test": "jest --coverage",
    "prepare": "yarn build",
    "kkprepublishOnly": "yarn test && yarn lint",
    "preversion": "yarn lint",
    "kkversion": "yarn format && git add -A src",
    "kkpostversion": "git push && git push --tags",
    "clean": "shx rm -rf dist/*",
    "kktest": "mocha --ui qunit",
    "testall": "mocha --ui qunit dist/sample/test"
  },
  "files": [
    "build"
  ],
  "directories": {
    "example": "example"
  },
  "dependencies": {
    "knex": "^0.21.1"
  },
  "peerDependencies": {
    "firebase": "7.x",
    "sqlite3": "4.x"
  },
  "// devDependencies": {
    "@types/node": "Needed for unit test assertions (assert.equal() etc.)",
    "shx": "Needed for development-time package.json scripts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vazra/firestore-sqlite-sync.git"
  },
  "keywords": [],
  "author": "Vazra",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/vazra/firestore-sqlite-sync/issues"
  },
  "homepage": "https://github.com/vazra/firestore-sqlite-sync#readme"
}
