{
  "_args": [
    [
      {
        "raw": "make-dir@^1.0.0",
        "scope": null,
        "escapedName": "make-dir",
        "name": "make-dir",
        "rawSpec": "^1.0.0",
        "spec": ">=1.0.0 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/configstore"
    ]
  ],
  "_from": "make-dir@>=1.0.0 <2.0.0",
  "_id": "make-dir@1.1.0",
  "_inCache": true,
  "_location": "/make-dir",
  "_nodeVersion": "8.7.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/make-dir-1.1.0.tgz_1508653268298_0.4698842391371727"
  },
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "5.4.2",
  "_phantomChildren": {},
  "_requested": {
    "raw": "make-dir@^1.0.0",
    "scope": null,
    "escapedName": "make-dir",
    "name": "make-dir",
    "rawSpec": "^1.0.0",
    "spec": ">=1.0.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/configstore"
  ],
  "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz",
  "_shasum": "19b4369fe48c116f53c2af95ad102c0e39e85d51",
  "_shrinkwrap": null,
  "_spec": "make-dir@^1.0.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/configstore",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/make-dir/issues"
  },
  "dependencies": {
    "pify": "^3.0.0"
  },
  "description": "Make a directory and its parents if needed - Think `mkdir -p`",
  "devDependencies": {
    "ava": "*",
    "codecov": "^2.1.0",
    "graceful-fs": "^4.1.11",
    "nyc": "^10.2.0",
    "path-type": "^3.0.0",
    "tempy": "^0.2.1",
    "xo": "*"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-0Pkui4wLJ7rxvmfUvs87skoEaxmu0hCUApF8nonzpl7q//FWp9zu8W61Scz4sd/kUiqDxvUhtoam2efDyiBzcA==",
    "shasum": "19b4369fe48c116f53c2af95ad102c0e39e85d51",
    "tarball": "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "de4a32fd806f4da0b880a8f2b3962d0ac34d7244",
  "homepage": "https://github.com/sindresorhus/make-dir#readme",
  "keywords": [
    "mkdir",
    "mkdirp",
    "make",
    "directories",
    "dir",
    "dirs",
    "folders",
    "directory",
    "folder",
    "path",
    "parent",
    "parents",
    "intermediate",
    "recursively",
    "recursive",
    "create",
    "fs",
    "filesystem",
    "file-system"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "make-dir",
  "optionalDependencies": {},
  "readme": "# make-dir [![Build Status: macOS & Linux](https://travis-ci.org/sindresorhus/make-dir.svg?branch=master)](https://travis-ci.org/sindresorhus/make-dir) [![Build status: Windows](https://ci.appveyor.com/api/projects/status/e0vtt8y600w91gcs/branch/master?svg=true)](https://ci.appveyor.com/project/sindresorhus/make-dir/branch/master) [![codecov](https://codecov.io/gh/sindresorhus/make-dir/branch/master/graph/badge.svg)](https://codecov.io/gh/sindresorhus/make-dir)\n\n> Make a directory and its parents if needed - Think `mkdir -p`\n\n\n## Advantages over [`mkdirp`](https://github.com/substack/node-mkdirp)\n\n- Promise API *(Async/await ready!)*\n- Fixes many `mkdirp` issues: [#96](https://github.com/substack/node-mkdirp/pull/96) [#70](https://github.com/substack/node-mkdirp/issues/70) [#66](https://github.com/substack/node-mkdirp/issues/66)\n- 100% test coverage\n- CI-tested on macOS, Linux, and Windows\n- Actively maintained\n- Doesn't bundle a CLI\n\n\n## Install\n\n```\n$ npm install make-dir\n```\n\n\n## Usage\n\n```\n$ pwd\n/Users/sindresorhus/fun\n$ tree\n.\n```\n\n```js\nconst makeDir = require('make-dir');\n\nmakeDir('unicorn/rainbow/cake').then(path => {\n\tconsole.log(path);\n\t//=> '/Users/sindresorhus/fun/unicorn/rainbow/cake'\n});\n```\n\n```\n$ tree\n.\n└── unicorn\n    └── rainbow\n        └── cake\n```\n\nMultiple directories:\n\n```js\nconst makeDir = require('make-dir');\n\nPromise.all([\n\tmakeDir('unicorn/rainbow')\n\tmakeDir('foo/bar')\n]).then(paths => {\n\tconsole.log(paths);\n\t/*\n\t[\n\t\t'/Users/sindresorhus/fun/unicorn/rainbow',\n\t\t'/Users/sindresorhus/fun/foo/bar'\n\t]\n\t*/\n});\n```\n\n\n## API\n\n### makeDir(path, [options])\n\nReturns a `Promise` for the path to the created directory.\n\n### makeDir.sync(path, [options])\n\nReturns the path to the created directory.\n\n#### path\n\nType: `string`\n\nDirectory to create.\n\n#### options\n\nType: `Object`\n\n##### mode\n\nType: `integer`<br>\nDefault: `0o777 & (~process.umask())`\n\nDirectory [permissions](https://x-team.com/blog/file-system-permissions-umask-node-js/).\n\n##### fs\n\nType: `Object`<br>\nDefault: `require('fs')`\n\nUse a custom `fs` implementation. For example [`graceful-fs`](https://github.com/isaacs/node-graceful-fs).\n\n\n## Related\n\n- [make-dir-cli](https://github.com/sindresorhus/make-dir-cli) - CLI for this module\n- [del](https://github.com/sindresorhus/del) - Delete files and directories\n- [globby](https://github.com/sindresorhus/globby) - User-friendly glob matching\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/make-dir.git"
  },
  "scripts": {
    "test": "xo && nyc ava"
  },
  "version": "1.1.0"
}
