mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-01-12 22:51:28 +08:00
### Description Catapult (the internal tool we use to release Firebase JavaScript libraries) now works without the `0.0.0` version placeholder in the `bower.json` and `package.json` files. So, we can finally add the actual version numbers back into these files. ### Code sample N/A
39 lines
753 B
JSON
39 lines
753 B
JSON
{
|
|
"name": "reactfire",
|
|
"description": "Firebase mixin for ReactJS",
|
|
"version": "1.0.0",
|
|
"authors": [
|
|
"Firebase (https://firebase.google.com/)"
|
|
],
|
|
"homepage": "https://github.com/firebase/reactfire/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/firebase/reactfire.git"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"react",
|
|
"mixin",
|
|
"firebase",
|
|
"realtime"
|
|
],
|
|
"main": "dist/reactfire.js",
|
|
"ignore": [
|
|
"**/.*",
|
|
"src",
|
|
"build",
|
|
"tests",
|
|
"examples",
|
|
"node_modules",
|
|
"bower_components",
|
|
"firebase.json",
|
|
"package.json",
|
|
"gulpfile.js",
|
|
"changelog.txt"
|
|
],
|
|
"dependencies": {
|
|
"react": "0.13.x || 0.14.x || 15.x.x",
|
|
"firebase": "2.x.x || 3.x.x"
|
|
}
|
|
}
|