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

@normalizer/core

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@normalizer/core - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

3

index.js
const isCI = require('./src/utils/is-ci')
const findPackagePath = require('./src/utils/find-path')
const { findPackagePath, findCurrentPath } = require('./src/utils/find-path')
const run = require('./src/utils/runner')

@@ -42,3 +42,4 @@ const chalk = require('chalk')

module.exports.findPackagePath = findPackagePath
module.exports.findCurrentPath = findCurrentPath
module.exports.run = run
module.exports.chalk = chalk
{
"name": "@normalizer/core",
"version": "0.1.3",
"version": "0.1.4",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -6,3 +6,3 @@ 'use strict'

module.exports = function () {
module.exports.findPackagePath = function () {
const depDir = process.argv[2] || findCurrentDir('@normalizer/core')

@@ -22,2 +22,6 @@ const isInSubNodeModule = (depDir.match(/node_modules/g) || []).length > 1

module.exports.findCurrentPath = function () {
return findCurrentDir('@normalizer/core')
}
function findCurrentDir(dir) {

@@ -24,0 +28,0 @@ const depDir = path.join(__dirname, '../..')

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