[v6] Implement Realtime Database (#2195)

* [database] recreate database branch based off of #2185

* [database] cleanup linting issues

* [database] enable tests

* [database] add to tests deps
This commit is contained in:
Mike Diarmid
2019-06-04 15:25:35 +01:00
committed by Elliot Hesp
parent da9c32000d
commit fe959bb842
126 changed files with 12045 additions and 46 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "@react-native-firebase/database",
"version": "6.0.0-alpha.22",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "React Native Firebase - Realtime Database",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "genversion --semi lib/version.js",
"build:clean": "rimraf android/build && rimraf ios/build",
"prepare": "yarn run build"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase/tree/master/packages/database"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"firebase",
"database"
],
"peerDependencies": {
"@react-native-firebase/app": "6.0.0-alpha.22"
},
"dependencies": {
"@react-native-firebase/app-types": "6.0.0-alpha.22",
"@react-native-firebase/common": "6.0.0-alpha.22"
},
"gitHead": "2787d4413eb70c61a687c4d6913add6a6a01f582",
"publishConfig": {
"access": "public"
}
}