├── .gitignore ├── .idea ├── encodings.xml ├── jsLibraryMappings.xml ├── modules.xml └── vcs.xml ├── .npmignore ├── LICENSE ├── README.md ├── core.ts ├── karma.conf.ts ├── main-test.ts ├── package.json ├── src ├── firebase-array.ts ├── firebase-auth.service.ts ├── firebase-utils.ts ├── firebase.config.ts ├── firebase.module.ts ├── firebase.service.ts └── imports.ts ├── test ├── integration │ └── firebase.module.spec.ts └── unit │ ├── firebase-array.spec.ts │ ├── firebase-utils.spec.ts │ └── firebase.service.spec.ts ├── tsconfig.json ├── tsd.json ├── typings ├── es6-shim │ └── es6-shim.d.ts ├── firebase │ └── firebase.d.ts ├── gulp │ └── gulp.d.ts ├── jasmine │ └── jasmine.d.ts ├── node │ └── node.d.ts ├── orchestrator │ └── orchestrator.d.ts ├── q │ └── Q.d.ts ├── sinon │ └── sinon.d.ts └── tsd.d.ts ├── unit-tests.html ├── webpack.config.js └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/README.md -------------------------------------------------------------------------------- /core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/core.ts -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /main-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/main-test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/firebase-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase-array.ts -------------------------------------------------------------------------------- /src/firebase-auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase-auth.service.ts -------------------------------------------------------------------------------- /src/firebase-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase-utils.ts -------------------------------------------------------------------------------- /src/firebase.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase.config.ts -------------------------------------------------------------------------------- /src/firebase.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase.module.ts -------------------------------------------------------------------------------- /src/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/firebase.service.ts -------------------------------------------------------------------------------- /src/imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/src/imports.ts -------------------------------------------------------------------------------- /test/integration/firebase.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/test/integration/firebase.module.spec.ts -------------------------------------------------------------------------------- /test/unit/firebase-array.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/test/unit/firebase-array.spec.ts -------------------------------------------------------------------------------- /test/unit/firebase-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/test/unit/firebase-utils.spec.ts -------------------------------------------------------------------------------- /test/unit/firebase.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/test/unit/firebase.service.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/tsd.json -------------------------------------------------------------------------------- /typings/es6-shim/es6-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/es6-shim/es6-shim.d.ts -------------------------------------------------------------------------------- /typings/firebase/firebase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/firebase/firebase.d.ts -------------------------------------------------------------------------------- /typings/gulp/gulp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/gulp/gulp.d.ts -------------------------------------------------------------------------------- /typings/jasmine/jasmine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/jasmine/jasmine.d.ts -------------------------------------------------------------------------------- /typings/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/node/node.d.ts -------------------------------------------------------------------------------- /typings/orchestrator/orchestrator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/orchestrator/orchestrator.d.ts -------------------------------------------------------------------------------- /typings/q/Q.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/q/Q.d.ts -------------------------------------------------------------------------------- /typings/sinon/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/sinon/sinon.d.ts -------------------------------------------------------------------------------- /typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/typings/tsd.d.ts -------------------------------------------------------------------------------- /unit-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/unit-tests.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallynGowdy/ng2-firebase/HEAD/wercker.yml --------------------------------------------------------------------------------