├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── dist └── vue-firestore.js ├── jest.config.js ├── jest.setup.js ├── package.json ├── src ├── defaultOptions.js ├── main.js ├── utils │ └── utils.js └── vue-firestore.js ├── tests ├── TestCase.js ├── bind.spec.js └── vue-firestore.spec.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/README.md -------------------------------------------------------------------------------- /dist/vue-firestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/dist/vue-firestore.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/package.json -------------------------------------------------------------------------------- /src/defaultOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/src/defaultOptions.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/vue-firestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/src/vue-firestore.js -------------------------------------------------------------------------------- /tests/TestCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/tests/TestCase.js -------------------------------------------------------------------------------- /tests/bind.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/tests/bind.spec.js -------------------------------------------------------------------------------- /tests/vue-firestore.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/tests/vue-firestore.spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdg-tangier/vue-firestore/HEAD/webpack.config.js --------------------------------------------------------------------------------