-
-
Notifications
You must be signed in to change notification settings - Fork 340
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "vuefire",
"version": "1.4.0",
"description": "Firebase bindings for Vue.js",
"main": "dist/vuefire.js",
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint --ext=js,html src tests examples karma.conf.js",
"test": "npm run lint && karma start karma.conf.js --single-run",
"dev": "webpack src/vuefire.js dist/vuefire.js --watch",
"build-dev": "webpack src/vuefire.js dist/vuefire.js --output-library=VueFire --output-library-target=umd",
"build-prod": "webpack src/vuefire.js dist/vuefire.min.js --output-library=VueFire --output-library-target=umd -p",
"build": "npm run build-dev && npm run build-prod",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vuefire.git"
},
"keywords": [
"vue",
"mixin",
"firebase",
"realtime"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vuefire/issues"
},
"homepage": "https://github.com/vuejs/vuefire#readme",
"peerDependencies": {
"firebase": "^2.4.1 || 3.x.x"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"firebase": "^3.6.7",
"istanbul-instrumenter-loader": "^1.2.0",
"karma": "^1.4.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"lolex": "^1.5.2",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"vue": "^1.0.28",
"webpack": "^1.14.0"
}
}