3.3.0
This commit is contained in:
parent
2b11902eb0
commit
8e7c202846
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "react-native-firebase",
|
"name": "react-native-firebase",
|
||||||
"version": "3.2.7",
|
"version": "3.3.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
57
package.json
57
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "react-native-firebase",
|
"name": "react-native-firebase",
|
||||||
"version": "3.2.7",
|
"version": "3.3.0",
|
||||||
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
|
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
|
||||||
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Messaging (FCM), Remote Config, Storage and Performance.",
|
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Messaging (FCM), Remote Config, Storage and Performance.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -32,10 +32,46 @@
|
||||||
"jest": {
|
"jest": {
|
||||||
"preset": "jest-react-native",
|
"preset": "jest-react-native",
|
||||||
"setupFiles": [],
|
"setupFiles": [],
|
||||||
"unmockedModulePathPatterns": ["./node_modules/react", "./node_modules/react-native", "./node_modues/react-native-mock", "./node_modules/react-addons-test-utils"]
|
"unmockedModulePathPatterns": [
|
||||||
|
"./node_modules/react",
|
||||||
|
"./node_modules/react-native",
|
||||||
|
"./node_modues/react-native-mock",
|
||||||
|
"./node_modules/react-addons-test-utils"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"license": "APACHE-2.0",
|
"license": "APACHE-2.0",
|
||||||
"keywords": ["react", "admob", "auth", "config", "digits", "fabric", "phone-auth", "sms", "firestore", "cloud-firestore", "datastore", "remote-config", "transactions", "react-native", "react-native-firebase", "firebase", "fcm", "apn", "gcm", "analytics", "messaging", "database", "android", "ios", "crash", "firestack", "performance", "firestore", "dynamic-links", "crashlytics"],
|
"keywords": [
|
||||||
|
"react",
|
||||||
|
"admob",
|
||||||
|
"auth",
|
||||||
|
"config",
|
||||||
|
"digits",
|
||||||
|
"fabric",
|
||||||
|
"phone-auth",
|
||||||
|
"sms",
|
||||||
|
"firestore",
|
||||||
|
"cloud-firestore",
|
||||||
|
"datastore",
|
||||||
|
"remote-config",
|
||||||
|
"transactions",
|
||||||
|
"react-native",
|
||||||
|
"react-native-firebase",
|
||||||
|
"firebase",
|
||||||
|
"fcm",
|
||||||
|
"apn",
|
||||||
|
"gcm",
|
||||||
|
"analytics",
|
||||||
|
"messaging",
|
||||||
|
"database",
|
||||||
|
"android",
|
||||||
|
"ios",
|
||||||
|
"crash",
|
||||||
|
"firestack",
|
||||||
|
"performance",
|
||||||
|
"firestore",
|
||||||
|
"dynamic-links",
|
||||||
|
"crashlytics"
|
||||||
|
],
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "*",
|
"react": "*",
|
||||||
"react-native": ">= 0.48.0",
|
"react-native": ">= 0.48.0",
|
||||||
|
@ -92,8 +128,17 @@
|
||||||
"logo": "https://opencollective.com/opencollective/logo.txt"
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"lib/**/*.js": ["eslint --fix", "git add"],
|
"lib/**/*.js": [
|
||||||
"tests/{src|lib}/**/*.js": ["eslint --fix", "git add"],
|
"eslint --fix",
|
||||||
"*.{json,md,scss}": ["prettier --write", "git add"]
|
"git add"
|
||||||
|
],
|
||||||
|
"tests/{src|lib}/**/*.js": [
|
||||||
|
"eslint --fix",
|
||||||
|
"git add"
|
||||||
|
],
|
||||||
|
"*.{json,md,scss}": [
|
||||||
|
"prettier --write",
|
||||||
|
"git add"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue