From a1eb4ba9f6fcea14bcf34ce7ae3cbbd0d5462c5b Mon Sep 17 00:00:00 2001 From: Chris Talkington Date: Sun, 5 Jan 2014 16:21:57 -0600 Subject: [PATCH] define node version supported and dep on readable stream. --- .travis.yml | 1 + package.json | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6e5919d..cc4dba2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ language: node_js node_js: + - "0.8" - "0.10" diff --git a/package.json b/package.json index c657a0e..58582d7 100644 --- a/package.json +++ b/package.json @@ -4,13 +4,17 @@ "description": "tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system.", "repository": "git://github.com:mafintosh/tar-stream.git", "author": "Mathias Buus ", + "engines": { + "node": ">= 0.8.0" + }, "dependencies": { "end-of-stream": "~0.1.3", "bl": "~0.6.0" }, "devDependencies": { "tap": "~0.4.6", - "concat-stream": "~1.2.1" + "concat-stream": "~1.2.1", + "readable-stream": "~1.1.9" }, "scripts": { "test": "tap test/*.js"