Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2014-08-01 02:42:26 +0400
committerisaacs <i@izs.me>2014-08-01 02:42:26 +0400
commit8dd11d13479b9ebfa90252b4dcb0e7e544d27a32 (patch)
tree3d7d48b6d0440142b55a81766b3ebaff3f5d9090 /node_modules/tar
parente22099a5cdb440903d742672a0ada5bdce2e7c00 (diff)
update several dependencies
The quest to avoid SemVer '0.x' magic continues.
Diffstat (limited to 'node_modules/tar')
-rw-r--r--node_modules/tar/package.json12
1 files changed, 6 insertions, 6 deletions
diff --git a/node_modules/tar/package.json b/node_modules/tar/package.json
index 2f261b890..89ac65cf5 100644
--- a/node_modules/tar/package.json
+++ b/node_modules/tar/package.json
@@ -6,7 +6,7 @@
},
"name": "tar",
"description": "tar for node",
- "version": "0.1.20",
+ "version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-tar.git"
@@ -17,7 +17,7 @@
},
"dependencies": {
"block-stream": "*",
- "fstream": "~0.1.28",
+ "fstream": "^1.0.0",
"inherits": "2"
},
"devDependencies": {
@@ -27,12 +27,12 @@
"license": "BSD",
"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",
"readmeFilename": "README.md",
- "gitHead": "b5931010907cd1ef5a186bc947954391050cbcce",
+ "gitHead": "49979621a55c73c3f668d8e01830eba1ea9df862",
"bugs": {
"url": "https://github.com/isaacs/node-tar/issues"
},
"homepage": "https://github.com/isaacs/node-tar",
- "_id": "tar@0.1.20",
- "_shasum": "42940bae5b5f22c74483699126f9f3f27449cb13",
- "_from": "tar@~0.1.19"
+ "_id": "tar@1.0.0",
+ "_shasum": "36636d76e8ae12b4bc11a940ac606b5ca8a5fe1f",
+ "_from": "tar@latest"
}