89 lines
2.8 KiB
JSON
89 lines
2.8 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "mkpath@^0.1.0",
|
|
"scope": null,
|
|
"escapedName": "mkpath",
|
|
"name": "mkpath",
|
|
"rawSpec": "^0.1.0",
|
|
"spec": ">=0.1.0 <0.2.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/decompress-zip"
|
|
]
|
|
],
|
|
"_from": "mkpath@>=0.1.0 <0.2.0",
|
|
"_id": "mkpath@0.1.0",
|
|
"_inCache": true,
|
|
"_location": "/mkpath",
|
|
"_npmUser": {
|
|
"name": "jrajav",
|
|
"email": "jrajav@gmail.com"
|
|
},
|
|
"_npmVersion": "1.1.65",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "mkpath@^0.1.0",
|
|
"scope": null,
|
|
"escapedName": "mkpath",
|
|
"name": "mkpath",
|
|
"rawSpec": "^0.1.0",
|
|
"spec": ">=0.1.0 <0.2.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/decompress-zip"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
|
|
"_shasum": "7554a6f8d871834cc97b5462b122c4c124d6de91",
|
|
"_shrinkwrap": null,
|
|
"_spec": "mkpath@^0.1.0",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/decompress-zip",
|
|
"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"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "7554a6f8d871834cc97b5462b122c4c124d6de91",
|
|
"tarball": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz"
|
|
},
|
|
"homepage": "https://github.com/jrajav/mkpath#readme",
|
|
"keywords": [
|
|
"mkdir",
|
|
"mkdirp",
|
|
"directory",
|
|
"path",
|
|
"tree"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./mkpath",
|
|
"maintainers": [
|
|
{
|
|
"name": "jrajav",
|
|
"email": "jrajav@gmail.com"
|
|
}
|
|
],
|
|
"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"
|
|
}
|