Skip to content

Commit f4c9678

Browse files
committed
chore: initial commit
0 parents  commit f4c9678

File tree

4 files changed

+96
-0
lines changed

4 files changed

+96
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
coverage

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Evan You
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Vuefire [![Build Status](https://img.shields.io/circleci/project/vuejs/vuefire.svg)](https://circleci.com/gh/vuejs/vuefire) [![npm package](https://img.shields.io/npm/v/vuefire.svg)](https://www.npmjs.com/package/vuefire) [![coverage](https://img.shields.io/codecov/c/github/vuejs/vuefire.svg)](https://codecov.io/github/vuejs/vuefire)
2+
3+
> Vue.js 2 binding for Firestore
4+
5+
## Installation
6+
7+
8+
## Usage
9+
10+
## Data Normalization
11+
12+
### Array Bindings
13+
14+
## Contributing
15+
16+
Clone the repo, then:
17+
18+
```bash
19+
$ npm install # install dependencies
20+
$ npm test # run test suite with coverage report
21+
```
22+
23+
## License
24+
25+
[MIT](http://opensource.org/licenses/MIT)
26+

package.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "vuefire",
3+
"version": "2.0.0-alpha",
4+
"description": "Firestore bindings for Vue.js",
5+
"main": "dist/vuefire.js",
6+
"files": [
7+
"dist/**",
8+
"LICENSE",
9+
"README.md"
10+
],
11+
"scripts": {
12+
"lint": "eslint --ext=js,html src tests examples",
13+
"test": "npm run lint",
14+
"prepublish": "npm run build"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/vuejs/vuefire.git"
19+
},
20+
"keywords": [
21+
"vue",
22+
"plugin",
23+
"mixin",
24+
"firebase",
25+
"database",
26+
"firestore",
27+
"realtime"
28+
],
29+
"author": "Eduardo San Martin Morote",
30+
"license": "MIT",
31+
"bugs": {
32+
"url": "https://github.com/vuejs/vuefire/issues"
33+
},
34+
"homepage": "https://github.com/vuejs/vuefire#readme",
35+
"peerDependencies": {
36+
"firebase": "^4.5.0"
37+
},
38+
"devDependencies": {
39+
"cz-conventional-changelog": "^2.0.0"
40+
},
41+
"config": {
42+
"commitizen": {
43+
"path": "./node_modules/cz-conventional-changelog"
44+
}
45+
}
46+
}

0 commit comments

Comments
 (0)