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>2013-10-24 11:19:29 +0400
committerisaacs <i@izs.me>2013-10-24 11:25:26 +0400
commitc75a0d876b8ab9a6056aa716f1352443eed24a8f (patch)
treeed3a806a92da89ae0370d0243edf564cac8fa069 /node_modules/mkdirp
parent4989b4d4f23272bdf6e56b774760c634b7236d4c (diff)
various minor dep updates
Diffstat (limited to 'node_modules/mkdirp')
-rw-r--r--node_modules/mkdirp/package.json9
1 files changed, 4 insertions, 5 deletions
diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json
index 54cd699bd..aea8cb497 100644
--- a/node_modules/mkdirp/package.json
+++ b/node_modules/mkdirp/package.json
@@ -25,10 +25,9 @@
"license": "MIT",
"readme": "# mkdirp\n\nLike `mkdir -p`, but in node.js!\n\n[![build status](https://secure.travis-ci.org/substack/node-mkdirp.png)](http://travis-ci.org/substack/node-mkdirp)\n\n# example\n\n## pow.js\n\n```js\nvar mkdirp = require('mkdirp');\n \nmkdirp('/tmp/foo/bar/baz', function (err) {\n if (err) console.error(err)\n else console.log('pow!')\n});\n```\n\nOutput\n\n```\npow!\n```\n\nAnd now /tmp/foo/bar/baz exists, huzzah!\n\n# methods\n\n```js\nvar mkdirp = require('mkdirp');\n```\n\n## mkdirp(dir, mode, cb)\n\nCreate a new directory and any necessary subdirectories at `dir` with octal\npermission string `mode`.\n\nIf `mode` isn't specified, it defaults to `0777 & (~process.umask())`.\n\n`cb(err, made)` fires with the error or the first directory `made`\nthat had to be created, if any.\n\n## mkdirp.sync(dir, mode)\n\nSynchronously create a new directory and any necessary subdirectories at `dir`\nwith octal permission string `mode`.\n\nIf `mode` isn't specified, it defaults to `0777 & (~process.umask())`.\n\nReturns the first directory that had to be created, if any.\n\n# install\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install mkdirp\n```\n\n# license\n\nMIT\n",
"readmeFilename": "readme.markdown",
- "_id": "mkdirp@0.3.5",
- "dist": {
- "shasum": "35715a113218b4fa49dc9b69326afcf7f9b2948e"
+ "bugs": {
+ "url": "https://github.com/substack/node-mkdirp/issues"
},
- "_from": "mkdirp@0.3.5",
- "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
+ "_id": "mkdirp@0.3.5",
+ "_from": "mkdirp@latest"
}