define node version supported and dep on readable stream.
This commit is contained in:
parent
285b848425
commit
a1eb4ba9f6
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
|
- "0.8"
|
||||||
- "0.10"
|
- "0.10"
|
||||||
|
|
|
@ -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.",
|
"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",
|
"repository": "git://github.com:mafintosh/tar-stream.git",
|
||||||
"author": "Mathias Buus <mathiasbuus@gmail.com>",
|
"author": "Mathias Buus <mathiasbuus@gmail.com>",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.8.0"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"end-of-stream": "~0.1.3",
|
"end-of-stream": "~0.1.3",
|
||||||
"bl": "~0.6.0"
|
"bl": "~0.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tap": "~0.4.6",
|
"tap": "~0.4.6",
|
||||||
"concat-stream": "~1.2.1"
|
"concat-stream": "~1.2.1",
|
||||||
|
"readable-stream": "~1.1.9"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tap test/*.js"
|
"test": "tap test/*.js"
|
||||||
|
|
Loading…
Reference in a new issue