added keywords
This commit is contained in:
parent
611c4c8682
commit
f26646c62d
1 changed files with 18 additions and 2 deletions
20
package.json
20
package.json
|
@ -1,11 +1,27 @@
|
||||||
{
|
{
|
||||||
"name": "tar-stream",
|
"name": "tar-stream",
|
||||||
"version": "0.1.0",
|
"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",
|
"repository": "git://github.com:mafintosh/tar-stream.git",
|
||||||
"author": "Mathias Buus <mathiasbuus@gmail.com>",
|
"author": "Mathias Buus <mathiasbuus@gmail.com>",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"end-of-stream": "~0.1.3",
|
"end-of-stream": "~0.1.3",
|
||||||
"bl": "~0.6.0"
|
"bl": "~0.6.0"
|
||||||
}
|
},
|
||||||
|
"keywords": [
|
||||||
|
"tar",
|
||||||
|
"tarball",
|
||||||
|
"parse",
|
||||||
|
"parser",
|
||||||
|
"generate",
|
||||||
|
"generator",
|
||||||
|
"stream",
|
||||||
|
"stream2",
|
||||||
|
"streams",
|
||||||
|
"streams2",
|
||||||
|
"streaming",
|
||||||
|
"pack",
|
||||||
|
"extract",
|
||||||
|
"modify"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue