forked from FirebaseExtended/rxfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.6 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
{
"name": "rxfire",
"version": "6.0.1",
"private": true,
"type":"module",
"description": "Firebase JavaScript library RxJS",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
"homepage": "https://firebase.google.com/",
"browser": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./auth": {
"import": "./dist/auth/index.esm.js",
"require": "./dist/auth/index.cjs.js"
},
"./database": {
"import": "./dist/database/index.esm.js",
"require": "./dist/database/index.cjs.js"
},
"./firestore": {
"import": "./dist/firestore/index.esm.js",
"require": "./dist/firestore/index.cjs.js"
},
"./firestore/lite": {
"import": "./dist/firestore/lite/index.esm.js",
"require": "./dist/firestore/lite/index.cjs.js"
},
"./functions": {
"import": "./dist/functions/index.esm.js",
"require": "./dist/functions/index.cjs.js"
},
"./performance": {
"import": "./dist/performance/index.esm.js",
"require": "./dist/performance/index.cjs.js"
},
"./remote-config": {
"import": "./dist/remote-config/index.esm.js",
"require": "./dist/remote-config/index.cjs.js"
},
"./storage": {
"import": "./dist/storage/index.esm.js",
"require": "./dist/storage/index.cjs.js"
}
},
"sideEffects": false,
"keywords": [
"authentication",
"database",
"Firebase",
"firebase",
"realtime",
"storage",
"rxjs",
"notifications"
],
"repository": {
"type": "git",
"url": "https://github.com/firebaseextended/rxfire.git"
},
"scripts": {
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path './.gitignore'",
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path './.gitignore'",
"build": "run-s build:**",
"build:clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:rollup": "rollup -c",
"build:docs": "cp README.md ./dist/ && cp -r ./docs ./dist/",
"dev": "rollup -c -w",
"echo:chrome": "echo 'Open Chrome DevTools: \nchrome://inspect/#devices'",
"test": "FIREBASE_CLI_PREVIEWS=storageemulator firebase emulators:exec \"jest --detectOpenHandles\" --project=rxfire-test-c497c ",
"test:debug": "yarn echo:chrome && FIREBASE_CLI_PREVIEWS=storageemulator firebase emulators:exec ./test-debug.sh --project=rxfire-test-c497c"
},
"dependencies": {
"tslib": "^1.9.0 || ~2.1.0"
},
"peerDependencies": {
"firebase": "^9.0.0",
"rxjs": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-jest": "^26.6.3",
"cross-fetch": "^3.1.4",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"firebase": "^9.0.0",
"firebase-tools": "^9.10.2",
"glob": "^7.1.6",
"jest": "^26.6.3",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.33.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"rxjs": "^7.0.0",
"tslib": "^1.9.0 || ~2.1.0",
"typescript": "^4.2.4",
"xhr2": "^0.2.1"
},
"files": [
"dist/**/*",
"README.md",
"docs/**/*"
]
}