Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
brackets / opt / brackets / www / node_modules / mkpath / package.json
Size: Mime:
{
  "_args": [
    [
      {
        "raw": "mkpath@https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
        "scope": null,
        "escapedName": "mkpath",
        "name": "mkpath",
        "rawSpec": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
        "spec": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
        "type": "remote"
      },
      "/home/brktbldr/jenkins/nb/label/linux64/brackets/dist"
    ]
  ],
  "_from": "mkpath@>=0.1.0 <0.2.0",
  "_id": "mkpath@0.1.0",
  "_inCache": true,
  "_location": "/mkpath",
  "_phantomChildren": {},
  "_requested": {
    "raw": "mkpath@https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
    "scope": null,
    "escapedName": "mkpath",
    "name": "mkpath",
    "rawSpec": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
    "spec": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/",
    "/decompress-zip"
  ],
  "_resolved": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
  "_shasum": "7554a6f8d871834cc97b5462b122c4c124d6de91",
  "_shrinkwrap": null,
  "_spec": "mkpath@https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
  "_where": "/home/brktbldr/jenkins/nb/label/linux64/brackets/dist",
  "author": {
    "name": "Jonathan Rajavuori",
    "email": "jrajav@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/jrajav/mkpath/issues"
  },
  "dependencies": {},
  "description": "Make all directories in a path, like mkdir -p",
  "devDependencies": {
    "tap": "~0.3"
  },
  "homepage": "https://github.com/jrajav/mkpath#readme",
  "keywords": [
    "mkdir",
    "mkdirp",
    "directory",
    "path",
    "tree"
  ],
  "license": "MIT",
  "main": "./mkpath",
  "name": "mkpath",
  "optionalDependencies": {},
  "readme": "# mkpath\n\nMake all directories in a path, like `mkdir -p`.\n\n## How to use\n\n    var mkpath = require('mkpath');\n    \n    mkpath('red/green/violet', function (err) {\n        if (err) throw err;\n        console.log('Directory structure red/green/violet created');\n    });\n    \n    mkpath.sync('/tmp/blue/orange', 0700);\n\n### mkpath(path, [mode = 0777 & (~process.umask()),] [callback])\n\nCreate all directories that don't exist in `path` with permissions `mode`. When finished, `callback(err)` fires with the error, if any.\n\n### mkpath.sync(path, [mode = 0777 & (~process.umask())]);\n\nSynchronous version of the same. Throws error, if any.\n\n## License\n\nThis software is released under the [MIT license](http://www.opensource.org/licenses/MIT).\n\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jrajav/mkpath.git"
  },
  "scripts": {
    "test": "node node_modules/tap/bin/tap.js ./test"
  },
  "version": "0.1.0"
}