Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

web-ledger-client

Package Overview
Dependencies
Maintainers
6
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web-ledger-client - npm Package Compare versions

Comparing version 3.3.0 to 3.4.1

2

.eslintrc.js

@@ -7,2 +7,2 @@ module.exports = {

}
}
};
# web-ledger-client ChangeLog
## 3.4.1 - 2021-03-16
### Fixed
- Re-release v3.4.0 due to NPM failure.
## 3.4.0 - 2021-03-11
### Changed
- Use `apisauce@2` to address security vulnerabilities in the older `axios`
sub-dependency.
### Fixed
- Added a check to ensure `Error.captureStackTrace` is a function before using it.
## 3.3.0 - 2019-10-24

@@ -4,0 +18,0 @@

@@ -11,4 +11,7 @@ /*!

this.details = details;
Error.captureStackTrace(this, this.constructor);
// captureStackTrace is node only
if(typeof Error.captureStackTrace === 'function') {
Error.captureStackTrace(this, this.constructor);
}
}
};
{
"name": "web-ledger-client",
"version": "3.3.0",
"version": "3.4.1",
"description": "A WebLedger client.",

@@ -40,3 +40,3 @@ "homepage": "https://github.com/digitalbazaar/web-ledger-client",

"dependencies": {
"apisauce": "^1.0.2",
"apisauce": "^2.0.1",
"lodash.get": "^4.4.2"

@@ -46,9 +46,9 @@ },

"chai": "^4.2.0",
"eslint": "^6.0.0",
"eslint": "^7.17.0",
"eslint-config-digitalbazaar": "^2.0.0",
"eslint-plugin-jsdoc": "^4.6.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.2.1",
"nock": "^10.0.2",
"nyc": "^13.1.0",
"nyc": "^15.1.0",
"sinon": "^7.1.1",

@@ -74,3 +74,3 @@ "sinon-chai": "^3.2.0"

"generate-docs": "jsdoc2md lib/*.js > ./docs/api.md",
"lint": "eslint lib tests",
"lint": "eslint .",
"mocha": "nyc mocha ./tests/**/*.spec.js ./tests/*.spec.js",

@@ -77,0 +77,0 @@ "test": "npm run mocha",

@@ -5,2 +5,2 @@ module.exports = {

}
}
};

Sorry, the diff of this file is not supported yet

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