Comparing version 0.9.2 to 1.0.0
{ | ||
"name": "rerun", | ||
"description": "A retry library for node.js", | ||
"version": "0.9.2", | ||
"version": "1.0.0", | ||
"author": "BigPanda <noam@bigpanda.io>", | ||
@@ -27,2 +27,3 @@ "repository": { | ||
}, | ||
"publishConfig": { "registry": "https://registry.npmjs.org" }, | ||
"devDependencies": { | ||
@@ -29,0 +30,0 @@ "nock": "~0.27.2", |
var Q = require('q'); | ||
var RejectError = require('./error/reject'); | ||
@@ -10,2 +9,3 @@ module.exports = function (toRetry, options) { | ||
var factor = options.retryFactor || 1; | ||
var RejectError = options.rejectError || require('./error/reject'); | ||
@@ -12,0 +12,0 @@ function _succeed(returned) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
16615
1
1