{"_id":"tarr","_rev":"216402","name":"tarr","description":"tarr for node","dist-tags":{"latest":"1.1.0"},"maintainers":[{"name":"sintaxi","email":"brock@sintaxi.com"}],"time":{"modified":"2021-06-03T15:36:19.000Z","created":"2018-02-22T14:04:40.153Z","1.1.0":"2019-06-03T21:06:06.383Z","1.0.3":"2018-02-22T14:11:35.600Z","0.1.3":"2018-02-22T14:04:40.153Z"},"users":{},"repository":{"type":"git","url":"git://github.com/isaacs/node-tar.git"},"versions":{"1.1.0":{"bugs":{"url":"https://github.com/isaacs/node-tar/issues"},"dependencies":{"block-stream":"*","fstream":">=1.0.12","inherits":"2"},"description":"tarr for node","devDependencies":{"graceful-fs":"^3.0.2","mkdirp":"^0.5.0","rimraf":"1.x","tap":"0.x"},"homepage":"https://github.com/isaacs/node-tar#readme","license":"BSD","main":"tar.js","name":"tarr","repository":{"type":"git","url":"git://github.com/isaacs/node-tar.git"},"scripts":{"test":"tap test/*.js"},"version":"1.1.0","_id":"tarr@1.1.0","_npmVersion":"5.4.2","_nodeVersion":"8.8.1","_npmUser":{"name":"sintaxi","email":"brock@sintaxi.com"},"dist":{"shasum":"d7a9532ce97f08f5200b78ae0a82a6883173c8c8","size":322196,"noattachment":false,"key":"/tarr/-/tarr-1.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/tarr/download/tarr-1.1.0.tgz"},"maintainers":[{"name":"sintaxi","email":"brock@sintaxi.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tarr_1.1.0_1559595966261_0.1199209471890923"},"_hasShrinkwrap":false,"publish_time":1559595966383,"_cnpm_publish_time":1559595966383},"1.0.3":{"name":"tarr","description":"tarr for node","version":"1.0.3","repository":{"type":"git","url":"git://github.com/isaacs/node-tar.git"},"main":"tar.js","scripts":{"test":"tap test/*.js"},"dependencies":{"block-stream":"*","fstream":"^1.0.2","inherits":"2"},"devDependencies":{"graceful-fs":"^3.0.2","rimraf":"1.x","tap":"0.x","mkdirp":"^0.5.0"},"license":"BSD","gitHead":"f4151128c585da236c6b1e278b762ecaedc20c15","bugs":{"url":"https://github.com/isaacs/node-tar/issues"},"homepage":"https://github.com/isaacs/node-tar","_id":"tarr@1.0.3","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"sintaxi","email":"brock@sintaxi.com"},"dist":{"shasum":"98608fc364b36fa4fa8358ff30a3ec464dd192ec","size":322164,"noattachment":false,"key":"/tarr/-/tarr-1.0.3.tgz","tarball":"http://registry.cnpm.dingdandao.com/tarr/download/tarr-1.0.3.tgz"},"maintainers":[{"name":"sintaxi","email":"brock@sintaxi.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tarr_1.0.3_1519308695493_0.8176141156424028"},"_hasShrinkwrap":false,"publish_time":1519308695600,"_cnpm_publish_time":1519308695600},"0.1.3":{"name":"tarr","description":"tarr for node","version":"0.1.3","repository":{"type":"git","url":"git://github.com/isaacs/node-tar.git"},"main":"tar.js","scripts":{"test":"rm -rf test/tmp; tap test/*.js"},"engines":{"node":"~0.5.9 || 0.6 || 0.7 || 0.8"},"dependencies":{"inherits":"1.x","block-stream":"*","fstream":"0.1"},"devDependencies":{"tap":"0.x","rimraf":"1.x"},"gitHead":"8608877618d82780ab0a2228b1006e68540d2527","bugs":{"url":"https://github.com/isaacs/node-tar/issues"},"homepage":"https://github.com/isaacs/node-tar","_id":"tarr@0.1.3","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"sintaxi","email":"brock@sintaxi.com"},"dist":{"shasum":"674cc2a9aab58602ec969e573ae7b82692e82c5f","size":327933,"noattachment":false,"key":"/tarr/-/tarr-0.1.3.tgz","tarball":"http://registry.cnpm.dingdandao.com/tarr/download/tarr-0.1.3.tgz"},"maintainers":[{"name":"sintaxi","email":"brock@sintaxi.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tarr_0.1.3_1519308279865_0.6969471453086382"},"_hasShrinkwrap":false,"publish_time":1519308280153,"_cnpm_publish_time":1519308280153}},"readme":"# node-tar\n\nTar for Node.js.\n\n[![NPM](https://nodei.co/npm/tar.png)](https://nodei.co/npm/tar/)\n\n## API\n\nSee `examples/` for usage examples.\n\n### var tar = require('tar')\n\nReturns an object with `.Pack`, `.Extract` and `.Parse` methods.\n\n### tar.Pack([properties])\n\nReturns a through stream. Use\n[fstream](https://npmjs.org/package/fstream) to write files into the\npack stream and you will receive tar archive data from the pack\nstream.\n\nThis only works with directories, it does not work with individual files.\n\nThe optional `properties` object are used to set properties in the tar\n'Global Extended Header'.\n\n### tar.Extract([options])\n\nReturns a through stream. Write tar data to the stream and the files\nin the tarball will be extracted onto the filesystem.\n\n`options` can be:\n\n```js\n{\n  path: '/path/to/extract/tar/into',\n  strip: 0, // how many path segments to strip from the root when extracting\n}\n```\n\n`options` also get passed to the `fstream.Writer` instance that `tar`\nuses internally.\n\n### tar.Parse()\n\nReturns a writable stream. Write tar data to it and it will emit\n`entry` events for each entry parsed from the tarball. This is used by\n`tar.Extract`.\n","_attachments":{},"homepage":"https://github.com/isaacs/node-tar#readme","bugs":{"url":"https://github.com/isaacs/node-tar/issues"},"license":"BSD"}