Socket
Socket
Sign inDemoInstall

semver

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

semver - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

2

package.json
{ "name" : "semver"
, "version" : "1.0.13"
, "version" : "1.0.14"
, "description" : "The semantic version parser used by npm."

@@ -4,0 +4,0 @@ , "main" : "semver.js"

@@ -17,3 +17,3 @@ ;(function (exports) { // nothing in here is node-specific.

+ "([a-zA-Z-][a-zA-Z0-9-\.:]*)?)?)?"
, xRange = "((?:<|>)?=?)?\\s*" + xRangePlain
, xRange = "((?:<|>)=?)?\\s*" + xRangePlain
, exprSpermy = "(?:~>?)"+xRange

@@ -20,0 +20,0 @@ , expressions = exports.expressions =

@@ -174,2 +174,7 @@ var tap = require("tap")

, ["~v0.5.4-pre", "0.5.4"]
, ["=0.7.x", "0.7.2"]
, [">=0.7.x", "0.7.2"]
, ["=0.7.x", "0.7.0-asdf"]
, [">=0.7.x", "0.7.0-asdf"]
, ["<=0.7.x", "0.6.2"]
].forEach(function (v) {

@@ -224,2 +229,5 @@ t.ok(satisfies(v[1], v[0]), v[0]+" satisfied by "+v[1])

, ["< 1", "1.0.0beta"]
, ["=0.7.x", "0.8.2"]
, [">=0.7.x", "0.6.2"]
, ["<=0.7.x", "0.7.2"]
].forEach(function (v) {

@@ -226,0 +234,0 @@ t.ok(!satisfies(v[1], v[0]), v[0]+" not satisfied by "+v[1])

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