├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── logo.png ├── package.json ├── parser ├── parser.js └── parser.pegjs ├── src ├── auth.ts ├── cli.ts ├── firestore │ ├── collection.ts │ ├── document.ts │ ├── firestore.ts │ └── query-result.ts ├── index.ts └── logo.png └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/package.json -------------------------------------------------------------------------------- /parser/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/parser/parser.js -------------------------------------------------------------------------------- /parser/parser.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/parser/parser.pegjs -------------------------------------------------------------------------------- /src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/auth.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/firestore/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/firestore/collection.ts -------------------------------------------------------------------------------- /src/firestore/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/firestore/document.ts -------------------------------------------------------------------------------- /src/firestore/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/firestore/firestore.ts -------------------------------------------------------------------------------- /src/firestore/query-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/firestore/query-result.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/src/logo.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firemanjs/fireman/HEAD/tsconfig.json --------------------------------------------------------------------------------