Skip to content

Commit

Permalink
just use regular stream not readable
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinmetcalf committed Dec 19, 2014
1 parent 36e5387 commit dfdd33d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inject.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var sign = require('./sign');
var verify = require('./verify');
var stream = require('readable-stream');
var stream = require('stream');
var inherits = require('inherits');
var algos = require('./algos');
'use strict';
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
"bn.js": "^0.15.2",
"elliptic": "^0.15.14",
"inherits": "^2.0.1",
"parse-asn1": "^1.2.0",
"readable-stream": "^1.0.33"
"parse-asn1": "^1.2.0"
},
"devDependencies": {
"tap-spec": "^1.0.1",
"tape": "^3.0.3"
}
}
}

0 comments on commit dfdd33d

Please sign in to comment.