define node version supported and dep on readable stream.

This commit is contained in:
Chris Talkington 2014-01-05 16:21:57 -06:00
parent 285b848425
commit a1eb4ba9f6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,4 @@
language: node_js
node_js:
- "0.8"
- "0.10"

View file

@ -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 <mathiasbuus@gmail.com>",
"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"