Files
reactfire/bower.json
Jacob Wenger 420e7e5833 Added version numbers to bower.json and package.json (#124)
### 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
2017-02-22 11:03:42 -08:00

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"
}
}