New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@inpassor/firebase-config

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inpassor/firebase-config - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

7

lib/index.js

@@ -105,3 +105,8 @@ "use strict";

if (value) {
parameters[key] = JSON.parse(value);
try {
parameters[key] = JSON.parse(value);
}
catch (e) {
parameters[key] = value;
}
}

@@ -108,0 +113,0 @@ }

10

package.json
{
"name": "@inpassor/firebase-config",
"version": "1.2.0",
"version": "1.2.1",
"license": "MIT",

@@ -32,11 +32,11 @@ "author": "Oleg V. Kuzmin",

"flat": "^4.1.0",
"google-auth-library": "^3.1.0",
"google-auth-library": "^4.0.0",
"node-cache": "^4.2.0"
},
"devDependencies": {
"@types/node": "^11.9.4",
"@types/node": "^12.0.2",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}

@@ -119,3 +119,7 @@ import {

if (value) {
parameters[key] = JSON.parse(value);
try {
parameters[key] = JSON.parse(value);
} catch (e) {
parameters[key] = value
}
}

@@ -122,0 +126,0 @@ }

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