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-05-20 02:20:47 +0400
committerisaacs <i@izs.me>2014-05-20 02:21:35 +0400
commit015af8f0c42c1fd87e6521130e645b73f4559ddb (patch)
tree15b19402be0fdf3fc3f09969d238a3abe881dc36 /node_modules/fstream-npm
parent69bc6b5f01242b29527042bc5280087657fd6784 (diff)
Bump many minor dep versions
abbrev columnify fstream-npm glob ini minimatch npmconf
Diffstat (limited to 'node_modules/fstream-npm')
-rw-r--r--node_modules/fstream-npm/node_modules/fstream-ignore/package.json33
-rw-r--r--node_modules/fstream-npm/package.json10
2 files changed, 31 insertions, 12 deletions
diff --git a/node_modules/fstream-npm/node_modules/fstream-ignore/package.json b/node_modules/fstream-npm/node_modules/fstream-ignore/package.json
index fcf03f281..a4794004c 100644
--- a/node_modules/fstream-npm/node_modules/fstream-ignore/package.json
+++ b/node_modules/fstream-npm/node_modules/fstream-ignore/package.json
@@ -6,7 +6,7 @@
},
"name": "fstream-ignore",
"description": "A thing for ignoring files based on globs",
- "version": "0.0.7",
+ "version": "0.0.8",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/fstream-ignore.git"
@@ -16,9 +16,9 @@
"test": "tap test/*.js"
},
"dependencies": {
- "minimatch": "~0.2.0",
"fstream": "~0.1.17",
- "inherits": "2"
+ "inherits": "2",
+ "minimatch": "^0.3.0"
},
"devDependencies": {
"tap": "",
@@ -26,15 +26,30 @@
"mkdirp": ""
},
"license": "BSD",
- "readme": "# fstream-ignore\n\nA fstream DirReader that filters out files that match globs in `.ignore`\nfiles throughout the tree, like how git ignores files based on a\n`.gitignore` file.\n\nHere's an example:\n\n```javascript\nvar Ignore = require(\"fstream-ignore\")\nIgnore({ path: __dirname\n , ignoreFiles: [\".ignore\", \".gitignore\"]\n })\n .on(\"child\", function (c) {\n console.error(c.path.substr(c.root.path.length + 1))\n })\n .pipe(tar.Pack())\n .pipe(fs.createWriteStream(\"foo.tar\"))\n```\n\nThis will tar up the files in __dirname into `foo.tar`, ignoring\nanything matched by the globs in any .iginore or .gitignore file.\n",
- "readmeFilename": "README.md",
+ "gitHead": "8dfc936e8b2d25c0d82042b73a22c659e6e69a1e",
"bugs": {
"url": "https://github.com/isaacs/fstream-ignore/issues"
},
- "_id": "fstream-ignore@0.0.7",
+ "homepage": "https://github.com/isaacs/fstream-ignore",
+ "_id": "fstream-ignore@0.0.8",
+ "_shasum": "cc4830fb9963178be5d9eb37569a4a0785cf9e53",
+ "_from": "fstream-ignore@~0.0",
+ "_npmVersion": "1.4.10",
+ "_npmUser": {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ },
+ "maintainers": [
+ {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ }
+ ],
"dist": {
- "shasum": "eea3033f0c3728139de7b57ab1b0d6d89c353c63"
+ "shasum": "cc4830fb9963178be5d9eb37569a4a0785cf9e53",
+ "tarball": "http://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.8.tgz"
},
- "_from": "fstream-ignore@~0.0.5",
- "_resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.7.tgz"
+ "directories": {},
+ "_resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.8.tgz",
+ "readme": "ERROR: No README data found!"
}
diff --git a/node_modules/fstream-npm/package.json b/node_modules/fstream-npm/package.json
index 7769921d8..299148af5 100644
--- a/node_modules/fstream-npm/package.json
+++ b/node_modules/fstream-npm/package.json
@@ -6,22 +6,26 @@
},
"name": "fstream-npm",
"description": "fstream class for creating npm packages",
- "version": "0.1.6",
+ "version": "0.1.7",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/fstream-npm.git"
},
"main": "./fstream-npm.js",
"dependencies": {
- "fstream-ignore": "~0.0.5",
+ "fstream-ignore": "~0.0",
"inherits": "2"
},
"license": "BSD",
"readme": "# fstream-npm\n\nThis is an fstream DirReader class that will read a directory and filter\nthings according to the semantics of what goes in an npm package.\n\nFor example:\n\n```javascript\n// This will print out all the files that would be included\n// by 'npm publish' or 'npm install' of this directory.\n\nvar FN = require(\"fstream-npm\")\nFN({ path: \"./\" })\n .on(\"child\", function (e) {\n console.error(e.path.substr(e.root.path.length + 1))\n })\n```\n\n",
"readmeFilename": "README.md",
+ "gitHead": "13839c9be784f2addc9352d525b35835fba01151",
"bugs": {
"url": "https://github.com/isaacs/fstream-npm/issues"
},
- "_id": "fstream-npm@0.1.6",
+ "homepage": "https://github.com/isaacs/fstream-npm",
+ "_id": "fstream-npm@0.1.7",
+ "scripts": {},
+ "_shasum": "423dc5d1d1fcb7d878501f43c7e11a33292bd55f",
"_from": "fstream-npm@latest"
}