{
  "_args": [
    [
      {
        "raw": "fstream-ignore@^1.0.5",
        "scope": null,
        "escapedName": "fstream-ignore",
        "name": "fstream-ignore",
        "rawSpec": "^1.0.5",
        "spec": ">=1.0.5 <2.0.0",
        "type": "range"
      },
      "/home/jesus/sketchbook/dev/git/node-serialport/node_modules/tar-pack"
    ]
  ],
  "_from": "fstream-ignore@>=1.0.5 <2.0.0",
  "_id": "fstream-ignore@1.0.5",
  "_inCache": true,
  "_location": "/fstream-ignore",
  "_nodeVersion": "5.10.1",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/fstream-ignore-1.0.5.tgz_1463518095640_0.10221575922332704"
  },
  "_npmUser": {
    "name": "zkat",
    "email": "kat@sykosomatic.org"
  },
  "_npmVersion": "3.9.1",
  "_phantomChildren": {},
  "_requested": {
    "raw": "fstream-ignore@^1.0.5",
    "scope": null,
    "escapedName": "fstream-ignore",
    "name": "fstream-ignore",
    "rawSpec": "^1.0.5",
    "spec": ">=1.0.5 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/tar-pack"
  ],
  "_resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz",
  "_shasum": "9c31dae34767018fe1d249b24dada67d092da105",
  "_shrinkwrap": null,
  "_spec": "fstream-ignore@^1.0.5",
  "_where": "/home/jesus/sketchbook/dev/git/node-serialport/node_modules/tar-pack",
  "author": {
    "name": "Isaac Z. Schlueter",
    "email": "i@izs.me",
    "url": "http://blog.izs.me/"
  },
  "bugs": {
    "url": "https://github.com/isaacs/fstream-ignore/issues"
  },
  "dependencies": {
    "fstream": "^1.0.0",
    "inherits": "2",
    "minimatch": "^3.0.0"
  },
  "description": "A thing for ignoring files based on globs",
  "devDependencies": {
    "mkdirp": "",
    "rimraf": "",
    "tap": "^5.7.1"
  },
  "directories": {},
  "dist": {
    "shasum": "9c31dae34767018fe1d249b24dada67d092da105",
    "tarball": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz"
  },
  "files": [
    "ignore.js"
  ],
  "gitHead": "1438a1a2c25fee71327c36c86de787a14a53ffd4",
  "homepage": "https://github.com/isaacs/fstream-ignore#readme",
  "license": "ISC",
  "main": "ignore.js",
  "maintainers": [
    {
      "name": "isaacs",
      "email": "i@izs.me"
    },
    {
      "name": "othiym23",
      "email": "ogd@aoaioxxysz.net"
    },
    {
      "name": "zkat",
      "email": "kat@sykosomatic.org"
    }
  ],
  "name": "fstream-ignore",
  "optionalDependencies": {},
  "readme": "# fstream-ignore\n\nA fstream DirReader that filters out files that match globs in `.ignore`\nfiles throughout the tree, like how git ignores files based on a\n`.gitignore` file.\n\nHere's an example:\n\n```javascript\nvar Ignore = require(\"fstream-ignore\")\nIgnore({ path: __dirname\n       , ignoreFiles: [\".ignore\", \".gitignore\"]\n       })\n  .on(\"child\", function (c) {\n    console.error(c.path.substr(c.root.path.length + 1))\n  })\n  .pipe(tar.Pack())\n  .pipe(fs.createWriteStream(\"foo.tar\"))\n```\n\nThis will tar up the files in __dirname into `foo.tar`, ignoring\nanything matched by the globs in any .iginore or .gitignore file.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/isaacs/fstream-ignore.git"
  },
  "scripts": {
    "test": "tap test/*.js --cov"
  },
  "version": "1.0.5"
}
