File size: 815 Bytes
f9f1a35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
{
"name": "mv",
"version": "2.1.1",
"description": "fs.rename but works across devices. same as the unix utility 'mv'",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/andrewrk/node-mv.git"
},
"keywords": [
"mv",
"move",
"rename",
"device",
"recursive",
"folder"
],
"author": "Andrew Kelley",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
},
"devDependencies": {
"mocha": "~2.2.5"
},
"dependencies": {
"mkdirp": "~0.5.1",
"ncp": "~2.0.0",
"rimraf": "~2.4.0"
},
"bugs": {
"url": "https://github.com/andrewrk/node-mv/issues"
},
"homepage": "https://github.com/andrewrk/node-mv",
"directories": {
"test": "test"
}
}
|