This repository has been archived on 2026-03-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
wrench-js/package.json
refaelos 8fbe19ffed added 'mkdirp' to package,json
'mkdirp' is a useful tool to async mkdir recursive that doesn't fail if the folder exists.
2013-05-22 10:43:42 +03:00

40 lines
771 B
JSON

{
"name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.5.1",
"author": "Ryan McGrath <ryan@venodesigns.net>",
"repository": {
"type" : "git",
"url": "https://ryanmcgrath@github.com/ryanmcgrath/wrench-js.git"
},
"bugs": {
"url": "http://github.com/ryanmcgrath/wrench-js/issues"
},
"directories": {
"lib": "./lib/"
},
"dependencies": {
"mkdirp": "*"
},
"devDependencies": {
"nodeunit": ">= 0.6.4"
},
"main": "./lib/wrench",
"engines": {
"node": ">=0.1.97"
},
"scripts": { "test": "nodeunit tests/runner.js" },
"licenses": [{
"type" : "MIT",
"url" : "http://github.com/ryanmcgrath/wrench-js/raw/master/LICENSE"
}]
}