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

deadunit

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deadunit - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

118

npm-shrinkwrap.json
{
"name": "deadunit",
"version": "4.0.0",
"version": "4.0.2",
"dependencies": {

@@ -22,6 +22,61 @@ "async-future": {

"deadunit-core": {
"version": "4.0.2",
"from": "deadunit-core@4.0.2",
"resolved": "https://registry.npmjs.org/deadunit-core/-/deadunit-core-4.0.2.tgz",
"version": "4.0.3",
"from": "deadunit-core@4.0.3",
"resolved": "https://registry.npmjs.org/deadunit-core/-/deadunit-core-4.0.3.tgz",
"dependencies": {
"async-future": {
"version": "0.1.6",
"from": "https://registry.npmjs.org/async-future/-/async-future-0.1.6.tgz",
"resolved": "https://registry.npmjs.org/async-future/-/async-future-0.1.6.tgz",
"dependencies": {
"trimArguments": {
"version": "1.0.0",
"from": "https://github.com/fresheneesz/trimArguments/archive/e69ed3ebdfe6cf055916ba6e3a1e4b28f696da6f.tar.gz",
"resolved": "https://github.com/fresheneesz/trimArguments/archive/e69ed3ebdfe6cf055916ba6e3a1e4b28f696da6f.tar.gz"
},
"buildModules": {
"version": "1.0.0",
"from": "https://github.com/fresheneesz/buildModules/archive/2f50ea0830b0fa580c087b4bfa947de2e7b7d7c3.tar.gz",
"resolved": "https://github.com/fresheneesz/buildModules/archive/2f50ea0830b0fa580c087b4bfa947de2e7b7d7c3.tar.gz",
"dependencies": {
"uglify-js": {
"version": "2.4.12",
"from": "uglify-js@2.4.12",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.12.tgz",
"dependencies": {
"async": {
"version": "0.2.10",
"from": "async@0.2.10",
"resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz"
},
"source-map": {
"version": "0.1.31",
"from": "source-map@0.1.31",
"dependencies": {
"amdefine": {
"version": "0.1.0",
"from": "amdefine@0.1.0"
}
}
},
"optimist": {
"version": "0.3.7",
"from": "optimist@0.3.7",
"dependencies": {
"wordwrap": {
"version": "0.0.2",
"from": "wordwrap@0.0.2"
}
}
},
"uglify-to-browserify": {
"version": "1.0.1",
"from": "uglify-to-browserify@1.0.1"
}
}
}
}
}
}
},
"stack-trace": {

@@ -33,5 +88,5 @@ "version": "0.0.7",

"stackinfo": {
"version": "1.0.2",
"from": "https://registry.npmjs.org/stackinfo/-/stackinfo-1.0.2.tgz",
"resolved": "https://registry.npmjs.org/stackinfo/-/stackinfo-1.0.2.tgz",
"version": "1.0.3",
"from": "https://registry.npmjs.org/stackinfo/-/stackinfo-1.0.3.tgz",
"resolved": "https://registry.npmjs.org/stackinfo/-/stackinfo-1.0.3.tgz",
"dependencies": {

@@ -48,51 +103,6 @@ "stacktrace-js": {

"proto": {
"version": "1.0.8",
"from": "proto@1.0.8",
"resolved": "https://registry.npmjs.org/proto/-/proto-1.0.8.tgz",
"dependencies": {
"buildModules": {
"version": "1.0.0",
"from": "https://github.com/fresheneesz/buildModules/archive/2f50ea0830b0fa580c087b4bfa947de2e7b7d7c3.tar.gz",
"resolved": "https://github.com/fresheneesz/buildModules/archive/2f50ea0830b0fa580c087b4bfa947de2e7b7d7c3.tar.gz",
"dependencies": {
"uglify-js": {
"version": "2.4.12",
"from": "uglify-js@~2.4.0",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.12.tgz",
"dependencies": {
"async": {
"version": "0.2.10",
"from": "async@~0.2.6"
},
"source-map": {
"version": "0.1.31",
"from": "source-map@~0.1.7",
"dependencies": {
"amdefine": {
"version": "0.1.0",
"from": "amdefine@>=0.0.4"
}
}
},
"optimist": {
"version": "0.3.7",
"from": "optimist@~0.3.5",
"dependencies": {
"wordwrap": {
"version": "0.0.2",
"from": "wordwrap@~0.0.2"
}
}
},
"uglify-to-browserify": {
"version": "1.0.1",
"from": "uglify-to-browserify@~1.0.0"
}
}
}
}
}
}
"version": "1.0.9",
"from": "proto@1.0.9"
}
}
}
{"name":"deadunit",
"description": "A dead-simple nestable unit testing library for javascript and node.js.",
"keywords": ["unit", "test", "testing", "javascript", "node"],
"version":"4.0.1",
"version":"4.0.2",
"dependencies":{
"colors":"",
"deadunit-core":"4.0.2",
"proto":"1.0.8",
"deadunit-core":"4.0.3",
"proto":"1.0.9",
"async-future":"0.1.12"

@@ -10,0 +10,0 @@ },

@@ -34,3 +34,3 @@

var obj = someFunctionToTest()
var obj = {x:5, y: 'noty?'}
this.ok(obj.x === 5)

@@ -44,3 +44,3 @@ this.ok(obj.y === 'y')

try {
doSomethingBad()
throw new Error("oops") // exceptions
} catch(e) {

@@ -50,5 +50,5 @@ this.ok(true) // expect an exception

doSomethingAsynchronous(function(result) {
setTimeout(function(result) { // do something asynchronous
this.ok(result === 'good')
})
}, 10)
})

@@ -216,2 +216,3 @@

* 4.0.3 - updating deadunit-core
* 4.0.1 - updating deadunit-core to get support for source-code lines in-browser

@@ -218,0 +219,0 @@ * 4.0.0 - removing totalSynchronousDuration from format, and upgrading to deadunit-core 4.0.0 (which fixes some timeout problems)

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