Skip to content

Commit

Permalink
Merge pull request #2467 from simov/bump-uuid
Browse files Browse the repository at this point in the history
Migrate to uuid
  • Loading branch information
simov committed Nov 18, 2016
2 parents 0131e2d + 39350ed commit 67c9673
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/auth.js
@@ -1,7 +1,7 @@
'use strict'

var caseless = require('caseless')
, uuid = require('node-uuid')
, uuid = require('uuid')
, helpers = require('./helpers')

var md5 = helpers.md5
Expand Down
2 changes: 1 addition & 1 deletion lib/multipart.js
@@ -1,6 +1,6 @@
'use strict'

var uuid = require('node-uuid')
var uuid = require('uuid')
, CombinedStream = require('combined-stream')
, isstream = require('isstream')

Expand Down
2 changes: 1 addition & 1 deletion lib/oauth.js
Expand Up @@ -3,7 +3,7 @@
var url = require('url')
, qs = require('qs')
, caseless = require('caseless')
, uuid = require('node-uuid')
, uuid = require('uuid')
, oauth = require('oauth-sign')
, crypto = require('crypto')

Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -36,12 +36,12 @@
"isstream": "~0.1.2",
"json-stringify-safe": "~5.0.1",
"mime-types": "~2.1.7",
"node-uuid": "~1.4.7",
"oauth-sign": "~0.8.1",
"qs": "~6.3.0",
"stringstream": "~0.0.4",
"tough-cookie": "~2.3.0",
"tunnel-agent": "~0.4.1"
"tunnel-agent": "~0.4.1",
"uuid": "^3.0.0"
},
"scripts": {
"test": "npm run lint && npm run test-ci && npm run test-browser",
Expand Down

0 comments on commit 67c9673

Please sign in to comment.