forked from nuxt-community/firebase-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "@nuxtjs/firebase",
"version": "7.5.0",
"description": "Intergrate Firebase into your Nuxt project.",
"keywords": [
"firebase",
"firestore",
"google",
"googleauthentication",
"nuxt",
"realtimedatabase"
],
"homepage": "https://firebase.nuxtjs.org/",
"repository": "nuxt-community/firebase-module",
"license": "MIT",
"author": "Pascal Luther",
"files": [
"lib",
"types/*.d.ts"
],
"main": "lib/module.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.vue lib test",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest",
"commit": "npx git-cz",
"docs": "cd docs && yarn dev"
},
"dependencies": {
"consola": "^2.15.3"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.12",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxt/types": "^2.15.3",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/module-test-utils": "^1.6.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"codecov": "latest",
"core-js": "^3.9.1",
"cz-conventional-changelog": "latest",
"eslint": "^7.22.0",
"firebase": "^8.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"nuxt": "^2.15.3",
"proxy-mock-js": "^1.0.3",
"standard-version": "^9.1.1"
},
"peerDependencies": {
"firebase": "^8.3.1",
"nuxt": "^2.15.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"optionalDependencies": {
"firebase-admin": "^9.5.0"
}
}