Skip to content

Commit

Permalink
Swap mime module.
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Jun 25, 2014
1 parent a591aff commit 8892cb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"qs": "~0.6.0",
"json-stringify-safe": "~5.0.0",
"mime": "~1.2.9",
"mime-types": "^1.0.0",
"forever-agent": "~0.5.0",
"node-uuid": "~1.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion request.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var optional = require('./lib/optional')
, aws = optional('aws-sign2')
, httpSignature = optional('http-signature')
, uuid = require('node-uuid')
, mime = require('mime')
, mime = require('mime-types')
, tunnel = optional('tunnel-agent')
, _safeStringify = require('json-stringify-safe')

Expand Down
2 changes: 1 addition & 1 deletion tests/test-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ try {
var assert = require('assert')
var http = require('http');
var path = require('path');
var mime = require('mime');
var mime = require('mime-types');
var request = require('../index');
var fs = require('fs');

Expand Down

0 comments on commit 8892cb7

Please sign in to comment.