Skip to content

Commit

Permalink
add node@0.10 support back
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Nov 6, 2018
1 parent e839de7 commit f1a9825
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise",
"main": "through2.js",
"scripts": {
"test": "nyc node test/test.js | faucet && nyc report"
"test": "node test/test.js | faucet"
},
"repository": {
"type": "git",
Expand All @@ -19,13 +19,14 @@
"author": "Rod Vagg <r@va.gg> (https://github.com/rvagg)",
"license": "MIT",
"dependencies": {
"readable-stream": "2 || 3",
"readable-stream": "~2.3.6",
"xtend": "~4.0.1"
},
"devDependencies": {
"bl": "~2.0.1",
"faucet": "0.0.1",
"nyc": "~13.1.0",
"safe-buffer": "~5.1.2",
"stream-spigot": "~3.0.6",
"tape": "~4.9.1"
}
Expand Down
1 change: 1 addition & 0 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const test = require('tape')
, crypto = require('crypto')
, bl = require('bl')
, spigot = require('stream-spigot')
, Buffer = require('safe-buffer').Buffer

test('plain through', function (t) {
var th2 = through2(function (chunk, enc, callback) {
Expand Down

0 comments on commit f1a9825

Please sign in to comment.