{
  "name": "firesql",
  "version": "2.0.2",
  "description": "Query Cloud Firestore for Firebase using SQL",
  "keywords": [],
  "main": "firesql.js",
  "typings": "types/index.d.ts",
  "author": "Josep Sayol <josep.sayol@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/jsayol/FireSQL"
  },
  "license": "MIT",
  "engines": {
    "node": ">=8.0.0"
  },
  "scripts": {
    "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
    "prebuild": "yarn run pegjs && rimraf out",
    "build": "tsc --module commonjs && rollup -c rollup.config.js",
    "start": "rollup -c rollup.config.js -w",
    "test": "ts-node --project tools/tsconfig.json tools/run-tests.ts",
    "test:emulator": "ts-node --project tools/tsconfig.json tools/tests/emulator/index.ts",
    "test:watch": "jest --verbose --watch",
    "test:prod": "yarn run lint && yarn run test --coverage --no-cache",
    "test:setup": "ts-node --project tools/tsconfig.json tools/tests/test-setup.ts",
    "ts-node": "ts-node",
    "release:prepare": "yarn run build && ts-node tools/prepare-release.ts",
    "npm:publish": "cd release && npm publish",
    "pegjs": "pegjs --extra-options-file pegjs.config.json"
  },
  "dependencies": {
    "core-js": "^3.0.1"
  },
  "peerDependencies": {
    "firebase": "*",
    "rxfire": "*",
    "rxjs": "*"
  }
}