{
  "_args": [
    [
      {
        "raw": "copy-dereference@^1.0.0",
        "scope": null,
        "escapedName": "copy-dereference",
        "name": "copy-dereference",
        "rawSpec": "^1.0.0",
        "spec": ">=1.0.0 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-filter"
    ]
  ],
  "_from": "copy-dereference@>=1.0.0 <2.0.0",
  "_id": "copy-dereference@1.0.0",
  "_inCache": true,
  "_location": "/copy-dereference",
  "_npmUser": {
    "name": "joliss",
    "email": "joliss42@gmail.com"
  },
  "_npmVersion": "1.4.14",
  "_phantomChildren": {},
  "_requested": {
    "raw": "copy-dereference@^1.0.0",
    "scope": null,
    "escapedName": "copy-dereference",
    "name": "copy-dereference",
    "rawSpec": "^1.0.0",
    "spec": ">=1.0.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/broccoli-filter"
  ],
  "_resolved": "https://registry.npmjs.org/copy-dereference/-/copy-dereference-1.0.0.tgz",
  "_shasum": "6b131865420fd81b413ba994b44d3655311152b6",
  "_shrinkwrap": null,
  "_spec": "copy-dereference@^1.0.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-filter",
  "author": {
    "name": "Jo Liss",
    "email": "joliss42@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/broccolijs/node-copy-dereference/issues"
  },
  "dependencies": {},
  "description": "Copy files and directories, dereferencing symlinks and preserving last-modified times",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "6b131865420fd81b413ba994b44d3655311152b6",
    "tarball": "https://registry.npmjs.org/copy-dereference/-/copy-dereference-1.0.0.tgz"
  },
  "gitHead": "c62c6a8ceb78151e12217292da1977a8ae0b9739",
  "homepage": "https://github.com/broccolijs/node-copy-dereference#readme",
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "joliss",
      "email": "joliss42@gmail.com"
    }
  ],
  "name": "copy-dereference",
  "optionalDependencies": {},
  "readme": "# node-copy-dereference\n\nCopy a file or directory, dereferencing symlinks in the process, and\npreserving last-modified times and file modes.\n\nMade for use by Broccoli and Broccoli plugins.\n\n## Installation\n\n```sh\nnpm install --save copy-dereference\n```\n\n## Example\n\n```js\nvar copyDereferenceSync = require('copy-dereference').sync;\n\ncopyDereferenceSync('src_dir/some_file.txt', 'dest_dir/some_file.txt');\ncopyDereferenceSync('src_dir/some_dir', 'dest_dir/some_dir');\n```\n\n## Description\n\n```js\ncopyDereferenceSync(srcPath, destPath)\n```\n\nCopy the file or directory at `srcPath` to `destPath`.\n\nIf `srcPath` is a symlink, or if there is a symlink somewhere underneath the\ndirectory at `srcPath`, it will be dereferenced, that is, it will be replaced\nwith the thing it points to.\n\nFile & directory last-modified times as well as file modes (permissions &\nexecutable bit) will be preserved.\n\nWe throw an exception if there are any broken symlinks at or beneath\n`srcPath`, if `srcPath` does not exist, of if `destPath`'s parent directory\ndoes not exist.\n\nFurthermore, we throw an exception if `destPath` already exists. Thus in\ncontrast to Unix `cp`, the following will fail:\n\n```js\n// dest_dir already exists, and we might expect dest_dir/some_dir to be\n// created. This does not work; pass 'dest_dir/some_dir' instead.\ncopyDereferenceSync('src_dir/some_dir', 'dest_dir');\n```\n\nFile types other than files, directories and symlinks (such as device files or\nsockets) are not supported and will cause an exception.\n\n## Notes\n\n* There intentionally isn't an asynchronous version. It's not clear that we\nneed or want one. Before sending a patch to add an async version, please share\nyour use case on the issue tracker.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/broccolijs/node-copy-dereference.git"
  },
  "scripts": {},
  "version": "1.0.0"
}
