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:
authorRebecca Turner <me@re-becca.org>2015-05-22 11:33:46 +0300
committerRebecca Turner <me@re-becca.org>2015-06-26 03:27:03 +0300
commitd3c858ce4cfb3aee515bb299eb034fe1b5e44344 (patch)
treee7714c839934a729b68038f4c7dc5ec3ed877638 /node_modules/tar
parent24564b9654528d23c726cf9ea82b1aef2044b692 (diff)
deps: deduplicate npm@3 style
Diffstat (limited to 'node_modules/tar')
-rw-r--r--node_modules/tar/package.json88
1 files changed, 66 insertions, 22 deletions
diff --git a/node_modules/tar/package.json b/node_modules/tar/package.json
index f160d0bd0..30178a0ba 100644
--- a/node_modules/tar/package.json
+++ b/node_modules/tar/package.json
@@ -1,40 +1,84 @@
{
+ "_args": [
+ [
+ "tar@~2.1.1",
+ "/Users/rebecca/code/npm"
+ ]
+ ],
+ "_from": "tar@>=2.1.1 <2.2.0",
+ "_id": "tar@2.1.1",
+ "_inCache": true,
+ "_location": "/tar",
+ "_nodeVersion": "1.8.1",
+ "_npmUser": {
+ "email": "ogd@aoaioxxysz.net",
+ "name": "othiym23"
+ },
+ "_npmVersion": "2.9.1",
+ "_phantomChildren": {},
+ "_requested": {
+ "name": "tar",
+ "raw": "tar@~2.1.1",
+ "rawSpec": "~2.1.1",
+ "scope": null,
+ "spec": ">=2.1.1 <2.2.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/"
+ ],
+ "_resolved": "https://registry.npmjs.org/tar/-/tar-2.1.1.tgz",
+ "_shasum": "ac0649e135fa4546e430c7698514e1da2e8a7cc4",
+ "_shrinkwrap": null,
+ "_spec": "tar@~2.1.1",
+ "_where": "/Users/rebecca/code/npm",
"author": {
- "name": "Isaac Z. Schlueter",
"email": "i@izs.me",
+ "name": "Isaac Z. Schlueter",
"url": "http://blog.izs.me/"
},
- "name": "tar",
- "description": "tar for node",
- "version": "2.1.1",
- "repository": {
- "type": "git",
- "url": "git://github.com/isaacs/node-tar.git"
- },
- "main": "tar.js",
- "scripts": {
- "test": "tap test/*.js"
+ "bugs": {
+ "url": "https://github.com/isaacs/node-tar/issues"
},
"dependencies": {
"block-stream": "*",
"fstream": "^1.0.2",
"inherits": "2"
},
+ "description": "tar for node",
"devDependencies": {
"graceful-fs": "^3.0.2",
+ "mkdirp": "^0.5.0",
"rimraf": "1.x",
- "tap": "0.x",
- "mkdirp": "^0.5.0"
+ "tap": "0.x"
},
- "license": "ISC",
- "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'. If the `fromBase` property is set to true,\nthe tar will contain files relative to the path passed, and not with\nthe path included.\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": "2cbe6c805fc5d87ce099183ed13c43faba962224",
- "bugs": {
- "url": "https://github.com/isaacs/node-tar/issues"
+ "directories": {},
+ "dist": {
+ "shasum": "ac0649e135fa4546e430c7698514e1da2e8a7cc4",
+ "tarball": "http://registry.npmjs.org/tar/-/tar-2.1.1.tgz"
},
+ "gitHead": "2cbe6c805fc5d87ce099183ed13c43faba962224",
"homepage": "https://github.com/isaacs/node-tar#readme",
- "_id": "tar@2.1.1",
- "_shasum": "ac0649e135fa4546e430c7698514e1da2e8a7cc4",
- "_from": "tar@>=2.1.1 <2.2.0"
+ "license": "ISC",
+ "main": "tar.js",
+ "maintainers": [
+ {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ },
+ {
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
+ }
+ ],
+ "name": "tar",
+ "optionalDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/isaacs/node-tar.git"
+ },
+ "scripts": {
+ "test": "tap test/*.js"
+ },
+ "version": "2.1.1"
}