~ps-jenkins/ubuntu-push/ubuntu-vivid-proposed

« back to all changes in this revision

Viewing changes to docs/example-server/node_modules/mocha/node_modules/mkdirp/package.json

  • Committer: Roberto Alsina
  • Date: 2014-09-05 14:57:17 UTC
  • mto: (91.179.25 automatic)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: roberto.alsina@canonical.com-20140905145717-0ufcsv27w25i1nnu
added example app server

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  "name": "mkdirp",
 
3
  "description": "Recursively mkdir, like `mkdir -p`",
 
4
  "version": "0.3.5",
 
5
  "author": {
 
6
    "name": "James Halliday",
 
7
    "email": "mail@substack.net",
 
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
  "homepage": "https://github.com/substack/node-mkdirp",
 
32
  "_id": "mkdirp@0.3.5",
 
33
  "dist": {
 
34
    "shasum": "67e5c12bd18b5d68b5f56518ff1ea28068eecb4f"
 
35
  },
 
36
  "_from": "mkdirp@0.3.5",
 
37
  "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
 
38
}