{
  "name": "del",
  "version": "0.1.1",
  "description": "Delete files/folders using globs",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/sindresorhus/del"
  },
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "http://sindresorhus.com"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "scripts": {
    "test": "mocha"
  },
  "files": [
    "index.js"
  ],
  "keywords": [
    "delete",
    "del",
    "remove",
    "destroy",
    "trash",
    "unlink",
    "clean",
    "cleaning",
    "cleanup",
    "rm",
    "rmrf",
    "rimraf",
    "rmdir",
    "glob",
    "gulpfriendly",
    "file",
    "files",
    "folder",
    "dir",
    "directory",
    "fs",
    "filesystem"
  ],
  "dependencies": {
    "each-async": "^0.1.3",
    "globby": "^0.1.1",
    "is-path-cwd": "^0.1.0",
    "is-path-in-cwd": "^0.1.0",
    "rimraf": "^2.2.8"
  },
  "devDependencies": {
    "fs-extra": "^0.9.1",
    "mocha": "*"
  },
  "readme": "# del [![Build Status](https://travis-ci.org/sindresorhus/del.svg?branch=master)](https://travis-ci.org/sindresorhus/del)\n\n> Delete files/folders using [globs](https://github.com/isaacs/minimatch#usage)\n\nPretty much [rimraf](https://github.com/isaacs/rimraf) with support for multiple files and globbing.  \nIt also protects you against deleting the current working directory and above.\n\n\n## Install\n\n```sh\n$ npm install --save del\n```\n\n\n## Usage\n\n```js\nvar del = require('del');\n\ndel(['tmp/*.js', '!tmp/unicorn.js'], function (err) {\n\tconsole.log('Files deleted');\n});\n```\n\n\n## API\n\n### del(patterns, [options], callback)\n### del.sync(patterns, [options])\n\n#### patterns\n\n**Required**  \nType: `string`, `array`\n\nSee supported minimatch [patterns](https://github.com/isaacs/minimatch#usage).\n\n- [Pattern examples with expected matches](https://github.com/sindresorhus/multimatch/blob/master/test.js)\n- [Quick globbing pattern overview](https://github.com/sindresorhus/multimatch#globbing-patterns)\n\n#### options\n\nType: `object`\n\nSee the node-glob [options](https://github.com/isaacs/node-glob#properties).\n\n#### options.force\n\nType: `boolean`  \nDefault: `false`\n\nAllow deleting the current working directory and files/folders outside it.\n\n\n## CLI\n\nSee [trash](https://github.com/sindresorhus/trash).\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "bugs": {
    "url": "https://github.com/sindresorhus/del/issues"
  },
  "homepage": "https://github.com/sindresorhus/del",
  "_id": "del@0.1.1",
  "_from": "del@^0.1.1"
}
