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

@incanta/config

Package Overview
Dependencies
Maintainers
0
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@incanta/config - npm Package Compare versions

Comparing version 0.5.12 to 0.5.13

3

lib/loader.js

@@ -44,2 +44,5 @@ "use strict";

for (const key of Object.keys(obj)) {
if (key === "variableCasing") {
continue;
}
const newKey = key.replace(/-([a-zA-Z0-9])/g, function (_, match) {

@@ -46,0 +49,0 @@ return match.toUpperCase();

4

package.json
{
"name": "@incanta/config",
"version": "0.5.12",
"version": "0.5.13",
"main": "lib/index.js",

@@ -21,3 +21,3 @@ "exports": {

"dependencies": {
"axios": "^1.7.2",
"axios": "^1.7.4",
"js-yaml": "^4.1.0",

@@ -24,0 +24,0 @@ "json5": "^2.2.3",

@@ -62,2 +62,6 @@ import fs from "fs";

for (const key of Object.keys(obj)) {
if (key === "variableCasing") {
continue;
}
const newKey = key.replace(/-([a-zA-Z0-9])/g, function (_, match) {

@@ -64,0 +68,0 @@ return match.toUpperCase();

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