react-native-firebase/package.json

92 lines
2.8 KiB
JSON
Raw Normal View History

2017-02-14 16:02:54 +00:00
{
"name": "react-native-firebase",
2017-09-21 11:49:25 +00:00
"version": "3.0.0-alpha.5",
2017-02-14 16:02:54 +00:00
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
2017-08-04 08:02:29 +00:00
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Auth, Database, Messaging (FCM), Remote Config, Storage, Admob, Analytics, Crash Reporting, and Performance.",
2017-02-14 16:02:54 +00:00
"main": "index",
"scripts": {
"flow": "flow",
2017-02-14 16:02:54 +00:00
"lint": "eslint ./src",
"dev": "npm run compile -- --watch",
"build": "./node_modules/.bin/babel --source-maps=true --out-dir=dist .",
2017-02-14 16:02:54 +00:00
"publish_pages": "gh-pages -d public/",
"docs-serve-local": "docsify serve docs",
"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",
"remote-config",
"transactions",
2017-02-14 16:02:54 +00:00
"react-native",
"react-native-firebase",
"firebase",
"fcm",
"analytics",
"messaging",
"database",
"android",
"ios",
"crash",
2017-06-05 08:58:44 +00:00
"firestack",
"performance"
2017-02-14 16:02:54 +00:00
],
"peerDependencies": {
"react": "*",
"react-native": ">= 0.40.0",
"fbjs": "*"
2017-02-14 16:02:54 +00:00
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-jest": "^14.1.0",
"babel-preset-react-native": "^1.9.0",
"debug": "^2.2.0",
"enzyme": "^2.4.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"flow-bin": "^0.55.0",
2017-02-14 16:02:54 +00:00
"react": "^15.3.0",
2017-03-17 13:27:04 +00:00
"react-dom": "^15.3.0",
2017-05-09 12:53:05 +00:00
"react-native": "^0.44.0",
"shelljs": "^0.7.8",
"wml": "0.0.82"
2017-02-14 16:02:54 +00:00
},
"dependencies": {
2017-05-31 15:28:06 +00:00
"bows": "^1.6.0",
"prop-types": "^15.5.10"
},
"rnpm": {
"android": {
"buildPatch": " compile(project(':react-native-firebase')) {\n transitive = false\n }\n",
"packageImportPath": "import io.invertase.firebase.RNFirebasePackage;\nimport io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage;",
"packageInstance": "new RNFirebasePackage(),\n new RNFirebaseAnalyticsPackage()"
}
2017-08-10 20:21:16 +00:00
}
2017-02-14 16:02:54 +00:00
}