forked from angular/angularfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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
{
"$schema": "../node_modules/ng-packagr/package.schema.json",
"name": "@angular/fire",
"version": "ANGULARFIRE2_VERSION",
"description": "The official Angular library for Firebase.",
"schematics": "./collection.json",
"builders": "./builders.json",
"keywords": [
"angular",
"firebase",
"rxjs",
"angularfire",
"angularfire2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/angular/angularfire.git"
},
"bugs": {
"url": "https://github.com/angular/angularfire/issues"
},
"homepage": "https://github.com/angular/angularfire#readme",
"author": "angular,firebase",
"license": "MIT",
"peerDependencies": {
"@angular/common": "ANGULAR_VERSION",
"@angular/core": "ANGULAR_VERSION",
"@angular/platform-browser": "ANGULAR_VERSION",
"@angular/platform-browser-dynamic": "ANGULAR_VERSION",
"firebase": "FIREBASE_VERSION",
"rxjs": "RXJS_VERSION"
},
"dependencies": {
"tslib": "^2.0.0"
},
"ngPackage": {
"lib": {
"umdModuleIds": {
"@angular/core": "ng",
"@angular/common": "ng",
"firebase/app": "firebase",
"tslib": "tslib",
"rxjs": "rxjs"
},
"entryFile": "core/public_api.ts"
},
"dest": "../dist/packages-dist"
}
}