forked from nuxt-community/firebase-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "@nuxtjs/firebase",
"version": "6.1.1",
"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": {
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"lint": "eslint --ext .js,.vue lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest",
"commit": "npx git-cz"
},
"dependencies": {
"consola": "^2.14.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@nuxt/types": "^2.13.3",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/module-test-utils": "^1.6.3",
"@vuepress/plugin-google-analytics": "^1.5.2",
"codecov": "^3.7.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"firebase": "^7.16.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"standard-version": "^8.0.2",
"vuepress": "^1.5.2",
"vuepress-theme-carbon": "^1.0.0"
},
"peerDependencies": {
"@nuxtjs/pwa": "^3.0.2",
"firebase": "^7.17.1",
"nuxt": "^2.13.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"optionalDependencies": {
"firebase-admin": "^9.0.0"
}
}