react-native-firebase/package.json

121 lines
3.6 KiB
JSON
Raw Normal View History

2017-02-14 16:02:54 +00:00
{
"name": "react-native-firebase",
2017-12-15 17:09:11 +00:00
"version": "3.2.0",
2017-02-14 16:02:54 +00:00
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
2017-11-08 10:04:04 +00:00
"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",
2017-12-06 08:59:00 +00:00
"types": "dist/index.d.ts",
2017-02-14 16:02:54 +00:00
"scripts": {
2018-01-09 17:31:54 +00:00
"build": "genversion lib/version.js && npm run build-lib && npm run build-flow",
"build-flow": "flow-copy-source -i */__tests__* lib dist",
"build-lib": "BABEL_ENV=publish babel lib -d dist --ignore __tests__ --copy-files",
"clean": "rimraf dist/",
"flow": "flow",
2017-02-14 16:02:54 +00:00
"lint": "eslint ./src",
"prepublish": "npm run clean && npm run build",
"postinstall": "postinstall-build dist && opencollective postinstall",
"test-cli": "node ./bin/test.js",
"tests-packager": "cd tests && npm run start",
"tests-npm-install": "cd tests && npm install",
"tests-pod-install": "cd tests && npm run ios:pod:install",
"tests-watch-start": "npm run test-cli watch init start",
"tests-watch-stop": "npm run test-cli watch stop"
2017-02-14 16:02:54 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase.git"
},
"jest": {
"preset": "jest-react-native",
"setupFiles": [],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-native",
"./node_modules/react-native-mock",
"./node_modules/react-addons-test-utils"
]
},
2017-09-11 14:02:44 +00:00
"license": "APACHE-2.0",
2017-02-14 16:02:54 +00:00
"keywords": [
"react",
2017-05-27 11:49:45 +00:00
"admob",
"auth",
"config",
2017-10-05 12:13:53 +00:00
"digits",
"phone-auth",
"sms",
2017-10-03 17:04:00 +00:00
"firestore",
"cloud-firestore",
"datastore",
2017-05-27 11:49:45 +00:00
"remote-config",
"transactions",
2017-02-14 16:02:54 +00:00
"react-native",
"react-native-firebase",
"firebase",
"fcm",
2017-10-05 12:13:53 +00:00
"apn",
"gcm",
2017-02-14 16:02:54 +00:00
"analytics",
"messaging",
"database",
"android",
"ios",
"crash",
2017-06-05 08:58:44 +00:00
"firestack",
2017-10-03 15:04:36 +00:00
"performance",
2017-11-08 10:04:04 +00:00
"firestore",
"dynamic-links",
"crashlytics"
2017-02-14 16:02:54 +00:00
],
"peerDependencies": {
"react": "*",
"react-native": ">= 0.48.0",
"fbjs": "*"
2017-02-14 16:02:54 +00:00
},
"devDependencies": {
"babel-cli": "^6.26.0",
2017-02-14 16:02:54 +00:00
"babel-eslint": "^7.0.0",
"babel-jest": "^14.1.0",
"babel-preset-react-native": "^1.9.0",
"babel-preset-react-native-syntax": "^1.0.0",
2017-02-14 16:02:54 +00:00
"debug": "^2.2.0",
"enzyme": "^2.4.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.56.0",
"flow-copy-source": "^1.2.1",
2018-01-09 17:31:54 +00:00
"genversion": "^2.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-native": "^0.50.3",
"rimraf": "^2.6.2",
"shelljs": "^0.7.8",
"wml": "0.0.82"
2017-02-14 16:02:54 +00:00
},
"dependencies": {
"bows": "^1.6.0",
"opencollective": "^1.0.3",
"postinstall-build": "^5.0.1",
"prop-types": "^15.6.0"
},
"rnpm": {
"android": {
"buildPatch": " compile(project(':react-native-firebase')) {\n transitive = false\n }\n",
"packageImportPath": "import io.invertase.firebase.RNFirebasePackage;",
"packageInstance": "new RNFirebasePackage()"
},
"commands": {
"postlink": "node node_modules/react-native-firebase/scripts/rnpm-postlink"
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-firebase",
"logo": "https://opencollective.com/opencollective/logo.txt"
2017-08-10 20:21:16 +00:00
}
2017-11-06 16:59:22 +00:00
}