forked from mesqueeb/vuex-easy-firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "vuex-easy-firestore",
"version": "1.34.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": {
"lint": "eslint --ext .js,.vue src",
"test": "ava --verbose",
"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",
"boilerplate",
"store",
"vue"
],
"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.3.0",
"filter-anything": "^1.1.4",
"find-and-replace-anything": "^2.0.4",
"flatten-anything": "^1.2.1",
"is-what": "^3.2.4",
"merge-anything": "^2.4.0",
"vuex-easy-access": "^3.1.7"
},
"devDependencies": {
"@vue/eslint-config-standard": "^4.0.0",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"ava": "^2.2.0",
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-vue": "^5.2.3",
"firebase": "^6.3.0",
"mock-cloud-firestore": "^0.9.3",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-typescript2": "^0.22.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vuepress": "^1.0.2",
"vuex": "^3.1.1"
},
"peerDependencies": {
"firebase": "^6.3.0"
}
}