mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
558 B
23 lines
558 B
{
|
|
"name" : "mkdirp",
|
|
"description" : "Recursively mkdir, like `mkdir -p`",
|
|
"version" : "0.1.0",
|
|
"author" : "James Halliday <mail@substack.net> (http://substack.net)",
|
|
"main" : "./index",
|
|
"keywords" : [
|
|
"mkdir",
|
|
"directory"
|
|
],
|
|
"repository" : {
|
|
"type" : "git",
|
|
"url" : "http://github.com/substack/node-mkdirp.git"
|
|
},
|
|
"scripts" : {
|
|
"test" : "tap test/*.js"
|
|
},
|
|
"devDependencies" : {
|
|
"tap" : "0.0.x"
|
|
},
|
|
"license" : "MIT/X11",
|
|
"engines": { "node": "*" }
|
|
}
|
|
|