Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firebase-api-surface

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firebase-api-surface - npm Package Compare versions

Comparing version 0.8.0 to 0.8.1

dist/esnext/@types/test-console.d.ts

8

dist/firebase-api-surface.cjs.js

@@ -11,11 +11,4 @@ 'use strict';

// export { FirebaseMessaging } from "@firebase/messaging-types";
var NotYetDone = true;
var messaging = /*#__PURE__*/Object.freeze({
NotYetDone: NotYetDone
});
var app = /*#__PURE__*/Object.freeze({

@@ -27,2 +20,1 @@

exports.rtdb = rtdb;
exports.messaging = messaging;

21

package.json
{
"name": "firebase-api-surface",
"version": "0.8.0",
"version": "0.8.1",
"description": "the publically exposed firebase API",

@@ -12,8 +12,8 @@ "license": "MIT",

],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"main": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"clean": "rimraf dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "tslint src/**/*.ts && tsc && bili lib/index.js --format umd-min,cjs",
"build": "tslint src/**/*.ts && tsc -P tsconfig.esnext.json && rollup -c rollup.umd.js && rollup -c rollup.cjs.js",
"test": "ts-node ./scripts/test.ts ",

@@ -24,10 +24,7 @@ "coverage": "nyc --reporter=text --reporter=html mocha --compilers ts:ts-node/register",

"dependencies": {
"common-types": "^1.7.36"
},
"devDependencies": {
"@firebase/app-types": "^0.1.1",
"@firebase/auth-types": "^0.1.1",
"@firebase/database-types": "^0.1.1",
"@firebase/firestore-types": "^0.2.1",
"@firebase/messaging-types": "^0.1.1",
"common-types": "^1.7.35"
},
"devDependencies": {
"@types/rimraf": "^2.0.2",

@@ -42,3 +39,3 @@ "@types/shelljs": "^0.7.7",

"rimraf": "^2.6.2",
"rollup": "^0.60.0",
"rollup": "^0.60.1",
"test-console": "^1.1.0",

@@ -45,0 +42,0 @@ "tslint": "^5.9.1",

import * as rtdb from "./rtdb";
import * as app from "./app";
// import * as storage from "./storage";
// import * as firestore from "./firestore";
import * as messaging from "./messaging";
import * as app from "./app";
// import * as auth from "./auth";
export { app, rtdb, messaging };
export { app, rtdb };
import { IDictionary } from "common-types";
import { IFirebaseApp } from "./app";
export interface IThenableReference<T = any>

@@ -4,0 +3,0 @@ extends IReference<T>,

{
"compilerOptions": {
"declaration": true,
"module": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"target": "es2015",
"noImplicitAny": true,
"outDir": "./lib",
"outDir": "./dist/esnext",
"preserveConstEnums": true,
"removeComments": false,
"typeRoots": ["./node_modules/@types"]
"typeRoots": ["./node_modules/@types", "src/@types"]
},

@@ -13,0 +13,0 @@ "include": ["src/**/*"],

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc