Socket
Socket
Sign inDemoInstall

npm-bundled

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-bundled - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

14

index.js

@@ -46,2 +46,14 @@ 'use strict'

addListener (ev, fn) {
return this.on(ev, fn)
}
on (ev, fn) {
const ret = super.on(ev, fn)
if (ev === 'done' && this.didDone) {
this.emit('done', this.result)
}
return ret
}
done () {

@@ -61,3 +73,3 @@ if (!this.didDone) {

start () {
const pj = this.path + '/package.json'
const pj = path.resolve(this.path, 'package.json')
if (this.packageJsonCache.has(pj))

@@ -64,0 +76,0 @@ this.onPackage(this.packageJsonCache.get(pj))

2

package.json
{
"name": "npm-bundled",
"version": "1.0.5",
"version": "1.0.6",
"description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof",

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

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