forked from vuejs/vuefire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "vuexfire",
"version": "3.2.0",
"description": "Firestore binding for Vuex",
"main": "dist/vuexfire.common.js",
"module": "dist/vuexfire.esm.js",
"unpkg": "dist/vuexfire.js",
"browser": "dist/vuexfire.esm.js",
"types": "dist/packages/vuexfire/src",
"sideEffects": false,
"files": [
"src",
"dist",
"LICENSE"
],
"scripts": {
"lint": "eslint --color --ext=js,ts src __tests__",
"pretest": "yarn run lint",
"test": "yarn run build && yarn run test:unit",
"test:unit": "jest",
"dev": "yarn run test:unit --watchAll",
"build": "rollup -c ../../rollup.config.js",
"postversion": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vuefire.git"
},
"keywords": [
"vuex",
"fire",
"vue",
"realtime",
"database",
"google",
"firebase",
"redux",
"firestore",
"store",
"bind"
],
"peerDependencies": {
"firebase": ">=4.0.0"
},
"author": {
"name": "Eduardo San Martin Morote"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vuefire/issues"
},
"homepage": "https://github.com/vuejs/vuefire#readme",
"devDependencies": {
"@posva/vuefire-test-helpers": "^1.2.1",
"vuex": "^3.1.1"
},
"dependencies": {
"@posva/vuefire-core": "^2.2.0"
},
"gitHead": "e3e2df3624572cec86ed861f2472df4d143f2265"
}