motion
Version:
motion - moving development forward
64 lines (63 loc) • 2.48 kB
JSON
{
"_args": [
[
"fstream-ignore@https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"/Users/nw/flint/packages/flint"
]
],
"_from": "fstream-ignore@1.0.2",
"_id": "fstream-ignore@1.0.2",
"_inCache": true,
"_location": "/fstream-ignore",
"_phantomChildren": {},
"_requested": {
"name": "fstream-ignore",
"raw": "fstream-ignore@https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"rawSpec": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"scope": null,
"spec": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"type": "remote"
},
"_requiredBy": [
"/surge"
],
"_resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"_shasum": "18c891db01b782a74a7bff936a0f24997741c7ab",
"_shrinkwrap": null,
"_spec": "fstream-ignore@https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz",
"_where": "/Users/nw/flint/packages/flint",
"author": {
"email": "i@izs.me",
"name": "Isaac Z. Schlueter",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/fstream-ignore/issues"
},
"dependencies": {
"fstream": "^1.0.0",
"inherits": "2",
"minimatch": "^2.0.1"
},
"description": "A thing for ignoring files based on globs",
"devDependencies": {
"mkdirp": "",
"rimraf": "",
"tap": ""
},
"homepage": "https://github.com/isaacs/fstream-ignore#readme",
"license": "ISC",
"main": "ignore.js",
"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"
},
"version": "1.0.2"
}