forked from posva/vuexfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.37 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vuexfire",
"version": "2.2.0",
"description": "Opinionated firebase binding for vuex",
"main": "dist/vuexfire.common.js",
"module": "dist/vuexfire.esm.js",
"unpkg": "dist/vuexfire.js",
"browser": "dist/vuexfire.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint --color --ext=js,html src test examples build",
"test": "yon run lint && yon run test:coverage && yon run build",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"dev": "npm-watch",
"test:unit": "ava",
"test:coverage": "nyc yon run test:unit",
"dev:test": "yon run test:unit -- --watch",
"prebuild": "rimraf dist",
"build": "node build/build.js",
"preversion": "yon run build",
"watch": "npm-watch"
},
"watch": {
"build": "src/**/*.js",
"lint": {
"extensions": "js,html",
"patterns": [
"{src,test}/**/*.js",
"examples/**/*.html"
],
"quiet": true
}
},
"ava": {
"modules": false,
"require": [
"babel-register"
],
"source": [
"**/*.js",
"!dist/**/*"
]
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vuexfire.git"
},
"keywords": [
"vuex",
"fire",
"vue",
"firebase",
"redux",
"store",
"bind",
"opinionated"
],
"peerDependencies": {
"firebase": "^2.4.1 || >= 3.0.0"
},
"author": "Eduardo San Martin Morote <posva13@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/posva/vuexfire/issues"
},
"homepage": "https://github.com/posva/vuexfire#readme",
"devDependencies": {
"ava": "^0.21.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.2.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"firebase": "^4.1.3",
"firebase-mock": "^1.1.4",
"mkdirp": "^0.5.1",
"npm-watch": "^0.2.0",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"uglify-js": "^3.0.25",
"vue": "^2.4.2",
"vuex": "^2.3.1",
"yarn-or-npm": "^2.0.4"
}
}