Name: js-handler/node_modules/nodeunit/node_modules/tap/node_modules/mkdirp/package.json 
1:
{
2:
  "name": "mkdirp",
3:
  "description": "Recursively mkdir, like `mkdir -p`",
4:
  "version": "0.3.5",
5:
  "author": {
6:
    "name": "James Halliday",
7:
    "email": "[email protected]",
8:
    "url": "http://substack.net"
9:
  },
10:
  "main": "./index",
11:
  "keywords": [
12:
    "mkdir",
13:
    "directory"
14:
  ],
15:
  "repository": {
16:
    "type": "git",
17:
    "url": "http://github.com/substack/node-mkdirp.git"
18:
  },
19:
  "scripts": {
20:
    "test": "tap test/*.js"
21:
  },
22:
  "devDependencies": {
23:
    "tap": "~0.4.0"
24:
  },
25:
  "license": "MIT",
26:
  "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",
27:
  "readmeFilename": "readme.markdown",
28:
  "bugs": {
29:
    "url": "https://github.com/substack/node-mkdirp/issues"
30:
  },
31:
  "_id": "[email protected]",
32:
  "dist": {
33:
    "shasum": "cac6e4ff988eafa2a5e063aa5812b5813d3b3b68"
34:
  },
35:
  "_from": "[email protected]~0.3",
36:
  "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
37:
}