forked from mesqueeb/vuex-easy-firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vuex-easy-firestore",
"version": "1.37.2",
"description": "Easy coupling of firestore and a vuex module. 2-way sync with 0 boilerplate!",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "types/index.d.ts",
"scripts": {
"test": "ava --verbose",
"test--only": "ava --verbose --match='*only:*'",
"rollup": "rollup -c build/rollup.js",
"rollup:watch": "rollup -c build/rollup.js --watch",
"build": "npm run rollup && npm run test",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./docs/.vuepress/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mesqueeb/vuex-easy-firestore.git"
},
"keywords": [
"vuex",
"firestore",
"firebase",
"firebase-firestore",
"google-firebase",
"firebase-cloud-firestore",
"boilerplate",
"store",
"vue",
"vuejs"
],
"author": "Luca Ban - Mesqueeb",
"license": "MIT",
"bugs": {
"url": "https://github.com/mesqueeb/vuex-easy-firestore/issues"
},
"homepage": "https://github.com/mesqueeb/vuex-easy-firestore#readme",
"dependencies": {
"compare-anything": "^0.1.3",
"copy-anything": "^1.6.0",
"filter-anything": "^1.1.5",
"find-and-replace-anything": "^2.0.5",
"flatten-anything": "^1.4.1",
"is-what": "^3.12.0",
"lodash-es": "^4.17.15",
"merge-anything": "^2.4.4",
"path-to-prop": "0.0.3",
"vuex-easy-access": "^3.1.8"
},
"devDependencies": {
"@vue/eslint-config-standard": "^4.0.0",
"@vuepress/plugin-google-analytics": "^1.5.0",
"ava": "^3.8.2",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-vue": "^5.2.3",
"esm": "^3.2.25",
"firebase": "^9.0.0",
"mock-cloud-firestore": "^0.12.0",
"rollup": "^1.32.1",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"vue": "^2.6.11",
"vuepress": "^1.5.0",
"vuex": "^3.4.0"
},
"peerDependencies": {
"firebase": "^9.0.0"
},
"ava": {
"extensions": [
"ts",
"js"
],
"require": [
"esm",
"ts-node/register"
],
"timeout": "30s"
}
}