-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
142 lines (142 loc) · 4.5 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@leaddreamer/firebase-wrapper",
"engines": {
"node": "16"
},
"version": "1.3.1",
"description": "A set of helper-wrapper functions around firebase firestore. Includes support for various forms of Pagination. Intent is to treat Firestore as a hierarchical records-oriented database. Originally conceived to port from one database to another.",
"repository": "LeadDreamer/firebase-wrapper",
"homepage": "https://github.com/LeadDreamer/firebase-wrapper#readme",
"bugs": {
"url": "https://github.com/LeadDreamer/firebase-wrapper/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Tracy R. Hall, Dreams and Logic",
"email": "[email protected]",
"url": "http://dreamsandlogic.com"
},
"type": "module",
"files": [
"*.js",
"**/*.js",
"**/dist/*.js",
"*.md",
"/*/*.md"
],
"main": "./index.js",
"exports": {
".": {
"node": {
"import": "./index.js",
"require": "./dist/index.js"
},
"default": "./index.js"
},
"./firebase-wrapper": {
"node": {
"import": "./index.js",
"require": "./dist/index.js"
},
"default": "./index.js"
},
"./FirebaseAuthWrapper": {
"node": {
"import": "./FirebaseAuthWrapper/index.js",
"require": "./dist/FirebaseAuthWrapper/index.js"
},
"default": "./FirebaseAuthWrapper/index.js"
},
"./FirebaseAuthWrapper/*.js": {
"node": {
"import": "./FirebaseAuthWrapper/*.js",
"require": "./dist/FirebaseAuthWrapper/*.js"
},
"default": "./FirebaseAuthWrapper/*.js"
},
"./FirebaseCloudFunctionsWrapper": {
"node": {
"import": "./FirebaseCloudFunctionsWrapper/index.js",
"require": "./dist/FirebaseCloudFunctionsWrapper/index.js"
},
"default": "./FirebaseCloudFunctionsWrapper/index.js"
},
"./FirebaseCloudFunctionsWrapper/*.js": {
"node": {
"import": "./FirebaseCloudFunctionsWrapper/*.js",
"require": "./dist/FirebaseCloudFunctionsWrapper/*.js"
},
"default": "./FirebaseCloudFunctionsWrapper/*.js"
},
"./FirebaseFirestoreWrapper": {
"node": {
"import": "./FirebaseFirestoreWrapper/index.js",
"require": "./dist/FirebaseFirestoreWrapper/index.js"
},
"default": "./FirebaseFirestoreWrapper/index.js"
},
"./FirebaseFirestoreWrapper/*.js": {
"node": {
"import": "./FirebaseFirestoreWrapper/*.js",
"require": "./dist/FirebaseFirestoreWrapper/*.js"
},
"default": "./FirebaseFirestoreWrapper/*.js"
},
"./FirebaseStorageWrapper": {
"node": {
"import": "./FirebaseStorageWrapper/index.js",
"require": "./dist/FirebaseStorageWrapper/index.js"
},
"default": "./FirebaseStorageWrapper/index.js"
},
"./FirebaseStorageWrapper/*.js": {
"node": {
"import": "./FirebaseStorageWrapper/*.js",
"require": "./dist/FirebaseStorageWrapper/*.js"
},
"default": "./FirebaseStorageWrapper/*.js"
}
},
"scripts": {
"transpile": "babel ./ -d ./dist/",
"build": " rm -rf dist && $npm_execpath run transpile",
"rebuild": "$npm_execpath version patch --git-tag-version && $npm_execpath run docs && $npm_execpath run build",
"rebuild_beta": "$npm_execpath version prerelease --git-tag-version --preid=beta && $npm_execpath run docs && $npm_execpath run build",
"rebuild_release": "$npm_execpath version minor --git-tag-version && $npm_execpath run docs && $npm_execpath run build",
"prepublishOnly": "$npm_execpath run build",
"make_docs": "jsdoc2md -c jsdoc.conf.json --template README.hbs --files *.js ./*/*.js > README.md",
"docs": "$npm_execpath run make_docs",
"publish_beta": "$npm_execpath publish --tag=beta",
"publish_package": "$npm_execpath publish",
"publish_dry": "$npm_execpath publish --dry-run"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"firebase": "^8.10.0"
},
"peerDependencies": {
"firebase-admin": "^9.4.1",
"firebase": "^8.10.1"
},
"peerDependenciesMeta": {
"firebase-admin": {
"optional": true
},
"firebase": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.4",
"jsdoc-to-markdown": "7.0.1",
"rimraf": "^3.0.2"
},
"keywords": []
}