react-native-firebase/package.json

93 lines
2.7 KiB
JSON
Raw Normal View History

2017-02-14 16:02:54 +00:00
{
"name": "react-native-firebase",
2017-05-25 11:57:08 +00:00
"version": "1.1.0",
2017-02-14 16:02:54 +00:00
"author": "Invertase <contact@invertase.io> (http://invertase.io)",
2017-05-27 11:49:45 +00:00
"description": "A well tested feature rich Firebase implementation for React Native, supporting iOS & Android",
2017-02-14 16:02:54 +00:00
"main": "index",
"scripts": {
"build": "./node_modules/.bin/babel --source-maps=true --out-dir=dist .",
"dev": "npm run compile -- --watch",
"lint": "eslint ./src",
"publish_pages": "gh-pages -d public/",
"tests-npm-install": "cd tests && npm install",
"tests-packager": "cd tests && npm run start",
2017-05-01 16:33:35 +00:00
"tests-watch-init": "wml add $(node --eval \"console.log(require('path').resolve('./lib'));\") $(node --eval \"console.log(require('path').resolve('./tests/firebase'));\")",
"tests-watch-start": "watchman watch $(node --eval \"console.log(require('path').resolve('./lib'));\") && wml start",
"tests-watch-stop": "watchman watch-del $(node --eval \"console.log(require('path').resolve('./lib'));\") && wml stop",
"tests-pod-install": "cd tests && npm run ios:pod:install",
"flow": "flow"
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"
]
},
"license": "MIT",
"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",
"firestack"
],
"peerDependencies": {
"react": "*",
2017-05-27 11:49:45 +00:00
"react-native": ">= 0.40.0"
2017-02-14 16:02:54 +00:00
},
"rnpm": {
"commands": {
"prelink": "node_modules/react-native-firebase/bin/prepare.sh",
"postlink": "node_modules/react-native-firebase/bin/cocoapods.sh"
},
"ios": {
2017-03-02 13:12:14 +00:00
"project": "ios/RNFirebase.xcodeproj"
2017-02-14 16:02:54 +00:00
},
"android": {
2017-03-02 13:12:14 +00:00
"packageInstance": "new RNFirebasePackage()"
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",
2017-05-25 13:59:01 +00:00
"flow-bin": "^0.46.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",
"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"
2017-02-14 16:02:54 +00:00
}
}