GT2/GT2-iOS/node_modules/mv/package.json

103 lines
3.0 KiB
JSON

{
"_args": [
[
{
"raw": "mv@~2",
"scope": null,
"escapedName": "mv",
"name": "mv",
"rawSpec": "~2",
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/@expo/bunyan"
]
],
"_from": "mv@>=2.0.0 <3.0.0",
"_id": "mv@2.1.1",
"_inCache": true,
"_location": "/mv",
"_nodeVersion": "0.12.0",
"_npmUser": {
"name": "superjoe",
"email": "superjoe30@gmail.com"
},
"_npmVersion": "2.5.1",
"_phantomChildren": {
"glob": "6.0.4"
},
"_requested": {
"raw": "mv@~2",
"scope": null,
"escapedName": "mv",
"name": "mv",
"rawSpec": "~2",
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"_requiredBy": [
"/@expo/bunyan",
"/xdl"
],
"_resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz",
"_shasum": "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2",
"_shrinkwrap": null,
"_spec": "mv@~2",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/@expo/bunyan",
"author": {
"name": "Andrew Kelley"
},
"bugs": {
"url": "https://github.com/andrewrk/node-mv/issues"
},
"dependencies": {
"mkdirp": "~0.5.1",
"ncp": "~2.0.0",
"rimraf": "~2.4.0"
},
"description": "fs.rename but works across devices. same as the unix utility 'mv'",
"devDependencies": {
"mocha": "~2.2.5"
},
"directories": {
"test": "test"
},
"dist": {
"shasum": "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2",
"tarball": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"
},
"engines": {
"node": ">=0.8.0"
},
"gitHead": "645d8f4c783abf84204be704098fdd41f36ab195",
"homepage": "https://github.com/andrewrk/node-mv",
"keywords": [
"mv",
"move",
"rename",
"device",
"recursive",
"folder"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "superjoe",
"email": "superjoe30@gmail.com"
}
],
"name": "mv",
"optionalDependencies": {},
"readme": "[![Build Status](https://secure.travis-ci.org/andrewrk/node-mv.png)](http://travis-ci.org/andrewrk/node-mv)\n\nUsage:\n------\n\n```js\nvar mv = require('mv');\n\nmv('source/file', 'dest/file', function(err) {\n // done. it tried fs.rename first, and then falls back to\n // piping the source file to the dest file and then unlinking\n // the source file.\n});\n```\n\nAnother example:\n\n```js\nmv('source/dir', 'dest/a/b/c/dir', {mkdirp: true}, function(err) {\n // done. it first created all the necessary directories, and then\n // tried fs.rename, then falls back to using ncp to copy the dir\n // to dest and then rimraf to remove the source dir\n});\n```\n\nAnother example:\n\n```js\nmv('source/file', 'dest/file', {clobber: false}, function(err) {\n // done. If 'dest/file' exists, an error is returned\n // with err.code === 'EEXIST'.\n});\n```\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/andrewrk/node-mv.git"
},
"scripts": {
"test": "mocha test/test.js --reporter spec"
},
"version": "2.1.1"
}