{
  "_args": [
    [
      {
        "raw": "walk-sync@^0.3.1",
        "scope": null,
        "escapedName": "walk-sync",
        "name": "walk-sync",
        "rawSpec": "^0.3.1",
        "spec": ">=0.3.1 <0.4.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-funnel"
    ]
  ],
  "_from": "walk-sync@>=0.3.1 <0.4.0",
  "_id": "walk-sync@0.3.2",
  "_inCache": true,
  "_location": "/walk-sync",
  "_nodeVersion": "7.4.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/walk-sync-0.3.2.tgz_1496157279862_0.8483593158889562"
  },
  "_npmUser": {
    "name": "stefanpenner",
    "email": "stefan.penner@gmail.com"
  },
  "_npmVersion": "5.0.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "walk-sync@^0.3.1",
    "scope": null,
    "escapedName": "walk-sync",
    "name": "walk-sync",
    "rawSpec": "^0.3.1",
    "spec": ">=0.3.1 <0.4.0",
    "type": "range"
  },
  "_requiredBy": [
    "/@ember/test-helpers/broccoli-funnel",
    "/broccoli-caching-writer",
    "/broccoli-concat",
    "/broccoli-filter",
    "/broccoli-funnel",
    "/broccoli-persistent-filter",
    "/broccoli-stew",
    "/broccoli-uglify-sourcemap",
    "/ember-cli",
    "/ember-cli-eslint",
    "/ember-cli/broccoli-funnel",
    "/ember-qunit/broccoli-funnel"
  ],
  "_resolved": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.2.tgz",
  "_shasum": "4827280afc42d0e035367c4a4e31eeac0d136f75",
  "_shrinkwrap": null,
  "_spec": "walk-sync@^0.3.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-funnel",
  "author": {
    "name": "Jo Liss",
    "email": "joliss42@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/joliss/node-walk-sync/issues"
  },
  "dependencies": {
    "ensure-posix-path": "^1.0.0",
    "matcher-collection": "^1.0.0"
  },
  "description": "Get an array of recursive directory contents",
  "devDependencies": {
    "jshint-tap-simple": "^1.0.2",
    "rimraf": "^2.4.3",
    "tap": "^1.0.0"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-FMB5VqpLqOCcqrzA9okZFc0wq0Qbmdm396qJxvQZhDpyu0W95G9JCmp74tx7iyYnyOcBtUuKJsgIKAqjozvmmQ==",
    "shasum": "4827280afc42d0e035367c4a4e31eeac0d136f75",
    "tarball": "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.2.tgz"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "16b1ec587df692e517528fccae82de7e76b48815",
  "homepage": "https://github.com/joliss/node-walk-sync#readme",
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "hjdivad",
      "email": "npm@hjdivad.com"
    },
    {
      "name": "joliss",
      "email": "joliss42@gmail.com"
    },
    {
      "name": "stefanpenner",
      "email": "stefan.penner@gmail.com"
    }
  ],
  "name": "walk-sync",
  "optionalDependencies": {},
  "readme": "# node-walk-sync\n\n[![Build Status](https://travis-ci.org/joliss/node-walk-sync.png?branch=master)](https://travis-ci.org/joliss/node-walk-sync)\n[![Build status](https://ci.appveyor.com/api/projects/status/sqe785gqb2qfmxbx/branch/master?svg=true)](https://ci.appveyor.com/project/joliss/node-walk-sync/branch/master)\n\nReturn an array containing all recursive files and directories under a given\ndirectory, similar to Unix `find`. Follows symlinks. Bare-bones, but\nvery fast.\n\nSimilar to [`wrench.readdirSyncRecursive`](https://github.com/ryanmcgrath/wrench-js#synchronous-operations),\nbut adds trailing slashes to directories.\n\nNot to be confused with [node-walk](https://github.com/coolaj86/node-walk),\nwhich has both an asynchronous and a synchronous API.\n\n## Installation\n\n```bash\nnpm install --save walk-sync\n```\n\n## Usage\n\n```js\nvar walkSync = require('walk-sync');\nvar paths = walkSync('project')\n```\n\nGiven `project/one.txt` and `project/subdir/two.txt`, `paths` will be the following\narray:\n\n```js\n['one.txt', 'subdir/', 'subdir/two.txt']\n```\n\nDirectories come before their contents, and have a trailing forward-slash (on\nall platforms).\n\nSymlinks are followed.\n\n### Entries\n\nSometimes, it is important to get additional information from a walk of a\ndirectory; for instance if the downstream consumer needs to stat the files we\ncan leverage the stats from the walk.\n\nTo accommodate, `walkSync.entries(path [, options])` is also provided, instead\nof returning a list of files and/or directories it returns an array of objects\nwhich correspond to a given file or directory, except with more data.\n\n```\nentry.relativePath\nentry.mode  // => fs.statSync(fullPath).mode\nentry.size  // => fs.statSync(fullPath).size\nentry.mtime // => fs.statSync(fullPath).mtime.getTime()\n\nentry.isDirectory() // => true if directory\n```\n\n### Options\n\n* `globs`: An array of globs. Only files and directories that match at least\n  one of the provided globs will be returned.\n\n    ```js\n    var paths = walkSync('project', { globs: ['subdir/**/*.txt'] });\n    // => ['subdir/two.txt']\n    ```\n\n    As an alternative to string globs, you can pass an array of precompiled\n    [`minimatch.Minimatch`](https://github.com/isaacs/minimatch#minimatch-class)\n    instances. This is faster and allows to specify your own globbing options.\n\n* `directories` (default: true): Pass `false` to only return files, not\n  directories:\n\n    ```js\n    var paths = walkSync('project', { directories: false })\n    // => ['one.txt', 'subdir/two.txt']\n    ```\n\n* `ignore`: An array of globs. Files and directories that match at least one\n  of the provided globs will be pruned while searching.\n\n    ```js\n    var paths = walkSync('project', { ignore: ['subdir'] })\n    // => ['one.txt']\n    ```\n\n## Background\n\n`walkSync(baseDir)` is a faster substitute for\n\n```js\nglob.sync('**', {\n  cwd: baseDir,\n  dot: true,\n  mark: true,\n  strict: true\n})\n```\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/joliss/node-walk-sync.git"
  },
  "scripts": {
    "test": "tap --timeout 2 ./test/*.js",
    "test:debug": "tap --debug-brk --timeout 9999 ./test/*.js"
  },
  "version": "0.3.2"
}
