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

trembita

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trembita - npm Package Compare versions

Comparing version

to
1.2.25

8

index.js
const { isURL } = require('validator');
const { OK, CREATED } = require('http-status-codes');
const Promise = require('bluebird');
const request = Promise.promisify(require('request'));
const Bluebird = require('bluebird');
const request = Bluebird.promisify(require('request'));

@@ -102,6 +102,6 @@ const { UnexpectedStatusCodeError, TrembitaError } = require('./error');

return Promise.reject(error);
return Bluebird.reject(error);
}
return Promise.resolve(body);
return Bluebird.resolve(body);
}

@@ -108,0 +108,0 @@ };

@@ -6,23 +6,23 @@ {

"bluebird": "^3.7.2",
"http-status-codes": "^1.4.0",
"request": "^2.87.0",
"validator": "^12.1.0"
"http-status-codes": "^2.1.4",
"request": "^2.88.2",
"validator": "^13.5.2"
},
"description": "Request wrapper core for consuming third party services",
"devDependencies": {
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"coveralls": "3.0.9",
"eslint": "6.8.0",
"babel-eslint": "10.1.0",
"chai": "4.3.0",
"coveralls": "3.1.0",
"eslint": "7.19.0",
"eslint-config-goodparts": "0.0.1",
"goodparts": "1.2.1",
"mocha": "6.2.2",
"nock": "11.7.0",
"nyc": "14.1.1",
"prettier": "1.19.1",
"semantic-release": "^15.14.0",
"semantic-release-npm-github-publish": "^1.4.0"
"goodparts": "1.3.0",
"mocha": "8.2.1",
"nock": "13.0.7",
"nyc": "15.1.0",
"prettier": "2.2.1",
"semantic-release": "^18.0.0",
"semantic-release-npm-github-publish": "^1.5.1"
},
"engines": {
"node": ">=8.0.0 <12.0.0"
"node": ">=8.0.0 <14.0.0"
},

@@ -62,3 +62,3 @@ "files": [

},
"version": "1.2.24"
"version": "1.2.25"
}