From f26646c62dadf21fb2d501e4140b1621ef60275e Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Fri, 20 Dec 2013 20:57:19 +0100 Subject: [PATCH] added keywords --- package.json | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0885624..e164a66 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,27 @@ { "name": "tar-stream", "version": "0.1.0", - "description": "tar-stream is an alternative tar parser. It is streams2, does not have a fstream dependency and does not do any file io.", + "description": "tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means easily you can extract/parse tarballs without ever hitting the file system.", "repository": "git://github.com:mafintosh/tar-stream.git", "author": "Mathias Buus ", "dependencies": { "end-of-stream": "~0.1.3", "bl": "~0.6.0" - } + }, + "keywords": [ + "tar", + "tarball", + "parse", + "parser", + "generate", + "generator", + "stream", + "stream2", + "streams", + "streams2", + "streaming", + "pack", + "extract", + "modify" + ] }