yahoo-fantasy
Advanced tools
Comparing version 1.0.2 to 2.0.0
@@ -28,3 +28,3 @@ var _ = require('lodash'); | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/games'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/games'; | ||
@@ -98,3 +98,3 @@ if ( _.isString(gameKeys) && !_.isEmpty(gameKeys) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games'; | ||
@@ -141,3 +141,3 @@ if ( !( _.isEmpty(filters) ) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys='; | ||
@@ -144,0 +144,0 @@ if ( _.isString(gameKeys) ) { |
@@ -16,3 +16,3 @@ var _ = require('lodash'); | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
@@ -19,0 +19,0 @@ if ( _.isString(leagueKeys) ) { |
@@ -15,3 +15,3 @@ var _ = require('lodash'); | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/players;player_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/players;player_keys='; | ||
@@ -59,3 +59,3 @@ if ( _.isString(playerKeys) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
@@ -109,3 +109,3 @@ if ( _.isString(leagueKeys) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/teams;team_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/teams;team_keys='; | ||
@@ -112,0 +112,0 @@ if ( _.isString(teamKeys) ) { |
@@ -15,3 +15,3 @@ var _ = require('lodash'); | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/teams;team_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/teams;team_keys='; | ||
@@ -57,3 +57,3 @@ if ( _.isString(teamKeys) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys='; | ||
@@ -99,3 +99,3 @@ if ( _.isString(leagueKeys) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/teams'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/teams'; | ||
@@ -135,3 +135,3 @@ if ( !( _.isEmpty(subresources) ) ) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys='; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys='; | ||
@@ -138,0 +138,0 @@ if ( _.isString(gameKeys) ) { |
@@ -11,3 +11,3 @@ var _ = require('lodash'); | ||
TransactionsCollection.prototype.fetch = function(transactionKeys, resources, filters, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/transactions;transaction_keys=', | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/transactions;transaction_keys=', | ||
apiCallback = this._fetch_callback.bind(this, cb); | ||
@@ -54,3 +54,3 @@ | ||
TransactionsCollection.prototype.leagueFetch = function(leagueKeys, resources, filters, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys=', | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/leagues;league_keys=', | ||
apiCallback = this._leagueFetch_callback.bind(this, cb); | ||
@@ -97,6 +97,6 @@ | ||
// todo: http://fantasysports.yahooapis.com/fantasy/v2/league/{league_key}/transactions;types=waiver,pending_trade;team_key={team_key} | ||
// todo: https://fantasysports.yahooapis.com/fantasy/v2/league/{league_key}/transactions;types=waiver,pending_trade;team_key={team_key} | ||
TransactionsCollection.prototype.add_player = function(leagueKey, teamKey, playerKey, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var apiCallback = this._add_player_callback.bind(this, cb); | ||
@@ -142,3 +142,3 @@ var xmlData = ' \ | ||
TransactionsCollection.prototype.drop_player = function(leagueKey, teamKey, playerKey, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var apiCallback = this._drop_player_callback.bind(this, cb); | ||
@@ -184,3 +184,3 @@ var xmlData = ' \ | ||
TransactionsCollection.prototype.adddrop_players = function(leagueKey, teamKey, addPlayerKey, dropPlayerKey, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json'; | ||
var apiCallback = this._adddrop_players_callback.bind(this, cb); | ||
@@ -187,0 +187,0 @@ var xmlData = ' \ |
@@ -16,3 +16,3 @@ var _ = require('lodash'); | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1'; | ||
@@ -19,0 +19,0 @@ if ( !( _.isEmpty(subresources) ) ) { |
89
index.js
@@ -7,6 +7,3 @@ /* global module, require */ | ||
var OAuth = require('oauth').OAuth, | ||
https = require('https'), | ||
querystring = require('querystring'), | ||
util = require('util'), | ||
var request = require('request'), | ||
GameResource = require('./resources/gameResource.js'), | ||
@@ -27,16 +24,5 @@ LeagueResource = require('./resources/leagueResource.js'), | ||
function YahooFantasy(consumerKey, consumerSecret) { | ||
var oauth = new OAuth( | ||
'https://api.login.yahoo.com/oauth/v2/get_request_token', | ||
'https://api.login.yahoo.com/oauth/v2/get_token', | ||
consumerKey, | ||
consumerSecret, | ||
'1.0', | ||
null, | ||
'HMAC-SHA1' | ||
); | ||
this.GET = 'get'; | ||
this.POST = 'post'; | ||
this.GET = 'GET'; | ||
this.POST = 'POST'; | ||
this.oauth = oauth; | ||
this.game = new GameResource(this); | ||
@@ -56,18 +42,7 @@ this.games = new GamesCollection(this); | ||
this.yuser = { | ||
token: null, | ||
secret: null, | ||
sessionHandle: null | ||
}; | ||
this.consumer = { | ||
key: consumerKey, | ||
secret: consumerSecret | ||
}; | ||
this.yahooUserToken = null; | ||
} | ||
YahooFantasy.prototype.setUserToken = function(userToken, userSecret, userSession) { | ||
this.yuser.token = userToken; | ||
this.yuser.secret = userSecret; | ||
this.yuser.sessionHandle = userSession; | ||
YahooFantasy.prototype.setUserToken = function(token) { | ||
this.yahooUserToken = token; | ||
}; | ||
@@ -82,38 +57,26 @@ | ||
var callback = this.apiCallback.bind(this, method, url, postData, cb); | ||
if ( this.POST == method ) { | ||
this.oauth.post( | ||
url, | ||
this.yuser.token, | ||
this.yuser.secret, | ||
postData, | ||
'application/xml', | ||
callback | ||
); | ||
} else { | ||
this.oauth.get( | ||
url, | ||
this.yuser.token, | ||
this.yuser.secret, | ||
callback | ||
); | ||
} | ||
var options = { | ||
url: url, | ||
method: method, | ||
json: true, | ||
auth: { | ||
'bearer': this.yahooUserToken | ||
} | ||
}; | ||
request(options, callback); | ||
}; | ||
YahooFantasy.prototype.apiCallback = function(method, url, postData, cb, e, data, resp) { | ||
try { | ||
data = JSON.parse(data); | ||
YahooFantasy.prototype.apiCallback = function(method, url, postData, cb, e, resp, data) { | ||
if (e) { | ||
return cb(e); | ||
} else { | ||
if ( data.error ) { | ||
// i hate regex so if anyone has a better way to do this... | ||
data.error.reason = String(data.error.description).match( /"(.*?)"/ )[1]; | ||
return cb(data.error); | ||
} | ||
if (e) { | ||
return cb(e); | ||
} else { | ||
if ( data.error ) { | ||
return cb(data.error); | ||
} | ||
return cb(null, data); | ||
} | ||
} catch (error) { | ||
return cb(error); | ||
return cb(null, data); | ||
} | ||
}; |
{ | ||
"name": "yahoo-fantasy", | ||
"version": "1.0.2", | ||
"version": "2.0.0", | ||
"description": "An API to help facilitate the use of the Yahoo! Fantasy Sports API in NodeJS projects.", | ||
@@ -27,8 +27,10 @@ "main": "index.js", | ||
"dependencies": { | ||
"lodash": "^4.16.6", | ||
"request": "^2.78.0" | ||
}, | ||
"devDependencies": { | ||
"istanbul": "^0.4.3", | ||
"jasmine": "^2.4.1", | ||
"lodash": "^4.11.1", | ||
"nock": "^3.3.2", | ||
"oauth": "^0.9.14" | ||
"nock": "^3.3.2" | ||
} | ||
} |
@@ -58,2 +58,5 @@ Yahoo! Fantasy API Node Module | ||
#### 2.0.0 | ||
* Moved to Yahoo!'s OAuth2.0 authentication mechanism. | ||
#### 1.0.2 | ||
@@ -60,0 +63,0 @@ * Fixed game resource roster postions callback bug. |
@@ -17,3 +17,3 @@ var gameHelper = require('../helpers/gameHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/metadata?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/metadata?format=json', | ||
apiCallback | ||
@@ -42,3 +42,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/leagues;league_keys=' + leagueKey.join(',') + '?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/leagues;league_keys=' + leagueKey.join(',') + '?format=json', | ||
apiCallback | ||
@@ -70,3 +70,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/players;player_keys=' + playerKey.join(',') + '?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/players;player_keys=' + playerKey.join(',') + '?format=json', | ||
apiCallback | ||
@@ -94,3 +94,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/game_weeks?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/game_weeks?format=json', | ||
apiCallback | ||
@@ -118,3 +118,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/stat_categories?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/stat_categories?format=json', | ||
apiCallback | ||
@@ -142,3 +142,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/position_types?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/position_types?format=json', | ||
apiCallback | ||
@@ -166,3 +166,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/roster_positions?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/game/' + gameKey + '/roster_positions?format=json', | ||
apiCallback | ||
@@ -169,0 +169,0 @@ ); |
@@ -16,3 +16,3 @@ var leagueHelper = require('../helpers/leagueHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/metadata?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/metadata?format=json', | ||
apiCallback | ||
@@ -36,3 +36,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/settings?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/settings?format=json', | ||
apiCallback | ||
@@ -59,3 +59,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/standings?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/standings?format=json', | ||
apiCallback | ||
@@ -78,3 +78,3 @@ ); | ||
LeagueResource.prototype.scoreboard = function(leagueKey, week, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/scoreboard' | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/scoreboard' | ||
@@ -120,3 +120,3 @@ if ( 2 == arguments.length ) { | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/teams?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/teams?format=json', | ||
apiCallback | ||
@@ -144,3 +144,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/players?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/players?format=json', | ||
apiCallback | ||
@@ -164,3 +164,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/draftresults?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/draftresults?format=json', | ||
apiCallback | ||
@@ -188,3 +188,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/transactions?format=json', | ||
apiCallback | ||
@@ -191,0 +191,0 @@ ); |
@@ -20,3 +20,3 @@ var playerHelper = require('../helpers/playerHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/metadata?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/metadata?format=json', | ||
apiCallback | ||
@@ -37,3 +37,3 @@ ); | ||
PlayerResource.prototype.stats = function(playerKey, week, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/stats'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/stats'; | ||
@@ -80,3 +80,3 @@ if ( 2 == arguments.length ) { | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/percent_owned?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/percent_owned?format=json', | ||
apiCallback | ||
@@ -108,3 +108,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/players;player_keys=' + playerKey + '/ownership?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/league/' + leagueKey + '/players;player_keys=' + playerKey + '/ownership?format=json', | ||
apiCallback | ||
@@ -139,3 +139,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/draft_analysis?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/player/' + playerKey + '/draft_analysis?format=json', | ||
apiCallback | ||
@@ -142,0 +142,0 @@ ); |
@@ -10,3 +10,3 @@ var teamHelper = require('../helpers/teamHelper.js'); | ||
RosterResource.prototype.players = function(teamKey, date, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/roster'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/roster'; | ||
@@ -13,0 +13,0 @@ if ( 2 == arguments.length ) { |
@@ -16,3 +16,3 @@ var teamHelper = require('../helpers/teamHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/metadata?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/metadata?format=json', | ||
apiCallback | ||
@@ -36,3 +36,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/stats?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/stats?format=json', | ||
apiCallback | ||
@@ -59,3 +59,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/standings?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/standings?format=json', | ||
apiCallback | ||
@@ -82,3 +82,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/roster?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/roster?format=json', | ||
apiCallback | ||
@@ -105,3 +105,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/draftresults?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/draftresults?format=json', | ||
apiCallback | ||
@@ -123,3 +123,3 @@ ); | ||
TeamResource.prototype.matchups = function(teamKey, weeks, cb) { | ||
var url = 'http://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/matchups'; | ||
var url = 'https://fantasysports.yahooapis.com/fantasy/v2/team/' + teamKey + '/matchups'; | ||
@@ -126,0 +126,0 @@ if ( 2 == arguments.length ) { |
@@ -16,3 +16,3 @@ var transactionHelper = require('../helpers/transactionHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/transaction/' + transactionKey + '/players?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/transaction/' + transactionKey + '/players?format=json', | ||
apiCallback | ||
@@ -19,0 +19,0 @@ ); |
@@ -16,3 +16,3 @@ var userHelper = require('../helpers/userHelper.js'); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games?format=json', | ||
apiCallback | ||
@@ -44,3 +44,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys=' + gameKeys.join(',') + '/leagues?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys=' + gameKeys.join(',') + '/leagues?format=json', | ||
apiCallback | ||
@@ -71,3 +71,3 @@ ); | ||
this.yf.GET, | ||
'http://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys=' + gameKeys.join(',') + '/teams?format=json', | ||
'https://fantasysports.yahooapis.com/fantasy/v2/users;use_login=1/games;game_keys=' + gameKeys.join(',') + '/teams?format=json', | ||
apiCallback | ||
@@ -74,0 +74,0 @@ ); |
Sorry, the diff of this file is not supported yet
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
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
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
2
129
1
71268
3
27
1862
+ Addedrequest@^2.78.0
+ Addedajv@6.12.6(transitive)
+ Addedasn1@0.2.6(transitive)
+ Addedassert-plus@1.0.0(transitive)
+ Addedasynckit@0.4.0(transitive)
+ Addedaws-sign2@0.7.0(transitive)
+ Addedaws4@1.13.2(transitive)
+ Addedbcrypt-pbkdf@1.0.2(transitive)
+ Addedcaseless@0.12.0(transitive)
+ Addedcombined-stream@1.0.8(transitive)
+ Addedcore-util-is@1.0.2(transitive)
+ Addeddashdash@1.14.1(transitive)
+ Addeddelayed-stream@1.0.0(transitive)
+ Addedecc-jsbn@0.1.2(transitive)
+ Addedextend@3.0.2(transitive)
+ Addedextsprintf@1.3.0(transitive)
+ Addedfast-deep-equal@3.1.3(transitive)
+ Addedfast-json-stable-stringify@2.1.0(transitive)
+ Addedforever-agent@0.6.1(transitive)
+ Addedform-data@2.3.3(transitive)
+ Addedgetpass@0.1.7(transitive)
+ Addedhar-schema@2.0.0(transitive)
+ Addedhar-validator@5.1.5(transitive)
+ Addedhttp-signature@1.2.0(transitive)
+ Addedis-typedarray@1.0.0(transitive)
+ Addedisstream@0.1.2(transitive)
+ Addedjsbn@0.1.1(transitive)
+ Addedjson-schema@0.4.0(transitive)
+ Addedjson-schema-traverse@0.4.1(transitive)
+ Addedjsprim@1.4.2(transitive)
+ Addedmime-db@1.52.0(transitive)
+ Addedmime-types@2.1.35(transitive)
+ Addedoauth-sign@0.9.0(transitive)
+ Addedperformance-now@2.1.0(transitive)
+ Addedpsl@1.13.0(transitive)
+ Addedpunycode@2.3.1(transitive)
+ Addedqs@6.5.3(transitive)
+ Addedrequest@2.88.2(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedsafer-buffer@2.1.2(transitive)
+ Addedsshpk@1.18.0(transitive)
+ Addedtough-cookie@2.5.0(transitive)
+ Addedtunnel-agent@0.6.0(transitive)
+ Addedtweetnacl@0.14.5(transitive)
+ Addeduri-js@4.4.1(transitive)
+ Addeduuid@3.4.0(transitive)
+ Addedverror@1.10.0(transitive)
- Removedistanbul@^0.4.3
- Removedjasmine@^2.4.1
- Removednock@^3.3.2
- Removedoauth@^0.9.14
- Removedabbrev@1.0.9(transitive)
- Removedamdefine@1.0.1(transitive)
- Removedargparse@1.0.10(transitive)
- Removedassertion-error@1.1.0(transitive)
- Removedasync@1.5.2(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedcall-bind@1.0.7(transitive)
- Removedchai@3.5.0(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removeddebug@2.6.9(transitive)
- Removeddeep-eql@0.1.3(transitive)
- Removeddeep-equal@1.1.2(transitive)
- Removeddeep-is@0.1.4(transitive)
- Removeddefine-data-property@1.1.4(transitive)
- Removeddefine-properties@1.2.1(transitive)
- Removedes-define-property@1.0.0(transitive)
- Removedes-errors@1.3.0(transitive)
- Removedescodegen@1.8.1(transitive)
- Removedesprima@2.7.34.0.1(transitive)
- Removedestraverse@1.9.3(transitive)
- Removedesutils@2.0.3(transitive)
- Removedexit@0.1.2(transitive)
- Removedfast-levenshtein@2.0.6(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedfunctions-have-names@1.2.3(transitive)
- Removedget-intrinsic@1.2.4(transitive)
- Removedglob@5.0.157.2.3(transitive)
- Removedgopd@1.0.1(transitive)
- Removedhandlebars@4.7.8(transitive)
- Removedhas-flag@1.0.0(transitive)
- Removedhas-property-descriptors@1.0.2(transitive)
- Removedhas-proto@1.0.3(transitive)
- Removedhas-symbols@1.0.3(transitive)
- Removedhas-tostringtag@1.0.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedinflight@1.0.6(transitive)
- Removedinherits@2.0.4(transitive)
- Removedis-arguments@1.1.1(transitive)
- Removedis-date-object@1.0.5(transitive)
- Removedis-regex@1.1.4(transitive)
- Removedisexe@2.0.0(transitive)
- Removedistanbul@0.4.5(transitive)
- Removedjasmine@2.99.0(transitive)
- Removedjasmine-core@2.99.1(transitive)
- Removedjs-yaml@3.14.1(transitive)
- Removedlevn@0.3.0(transitive)
- Removedlodash@2.4.1(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedminimist@1.2.8(transitive)
- Removedmkdirp@0.5.6(transitive)
- Removedms@2.0.0(transitive)
- Removedneo-async@2.6.2(transitive)
- Removednock@3.6.0(transitive)
- Removednopt@3.0.6(transitive)
- Removedoauth@0.9.15(transitive)
- Removedobject-is@1.1.6(transitive)
- Removedobject-keys@1.1.1(transitive)
- Removedonce@1.4.0(transitive)
- Removedoptionator@0.8.3(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedprelude-ls@1.1.2(transitive)
- Removedpropagate@0.3.1(transitive)
- Removedregexp.prototype.flags@1.5.3(transitive)
- Removedresolve@1.1.7(transitive)
- Removedset-function-length@1.2.2(transitive)
- Removedset-function-name@2.0.2(transitive)
- Removedsource-map@0.2.00.6.1(transitive)
- Removedsprintf-js@1.0.3(transitive)
- Removedsupports-color@3.2.3(transitive)
- Removedtype-check@0.3.2(transitive)
- Removedtype-detect@0.1.11.0.0(transitive)
- Removeduglify-js@3.19.3(transitive)
- Removedwhich@1.3.1(transitive)
- Removedword-wrap@1.2.5(transitive)
- Removedwordwrap@1.0.0(transitive)
- Removedwrappy@1.0.2(transitive)
Updatedlodash@^4.16.6