package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "rimraf",
  3. "version": "2.2.8",
  4. "main": "rimraf.js",
  5. "description": "A deep deletion module for node (like `rm -rf`)",
  6. "author": {
  7. "name": "Isaac Z. Schlueter",
  8. "email": "i@izs.me",
  9. "url": "http://blog.izs.me/"
  10. },
  11. "license": {
  12. "type": "MIT",
  13. "url": "https://github.com/isaacs/rimraf/raw/master/LICENSE"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/isaacs/rimraf.git"
  18. },
  19. "scripts": {
  20. "test": "cd test && bash run.sh"
  21. },
  22. "bin": {
  23. "rimraf": "./bin.js"
  24. },
  25. "contributors": [
  26. {
  27. "name": "Isaac Z. Schlueter",
  28. "email": "i@izs.me",
  29. "url": "http://blog.izs.me"
  30. },
  31. {
  32. "name": "Wayne Larsen",
  33. "email": "wayne@larsen.st",
  34. "url": "http://github.com/wvl"
  35. },
  36. {
  37. "name": "ritch",
  38. "email": "skawful@gmail.com"
  39. },
  40. {
  41. "name": "Marcel Laverdet"
  42. },
  43. {
  44. "name": "Yosef Dinerstein",
  45. "email": "yosefd@microsoft.com"
  46. }
  47. ],
  48. "readme": "`rm -rf` for node.\n\nInstall with `npm install rimraf`, or just drop rimraf.js somewhere.\n\n## API\n\n`rimraf(f, callback)`\n\nThe callback will be called with an error if there is one. Certain\nerrors are handled for you:\n\n* Windows: `EBUSY` and `ENOTEMPTY` - rimraf will back off a maximum of\n `opts.maxBusyTries` times before giving up.\n* `ENOENT` - If the file doesn't exist, rimraf will return\n successfully, since your desired outcome is already the case.\n\n## rimraf.sync\n\nIt can remove stuff synchronously, too. But that's not so good. Use\nthe async API. It's better.\n\n## CLI\n\nIf installed with `npm install rimraf -g` it can be used as a global\ncommand `rimraf <path>` which is useful for cross platform support.\n\n## mkdirp\n\nIf you need to create a directory recursively, check out\n[mkdirp](https://github.com/substack/node-mkdirp).\n",
  49. "readmeFilename": "README.md",
  50. "bugs": {
  51. "url": "https://github.com/isaacs/rimraf/issues"
  52. },
  53. "homepage": "https://github.com/isaacs/rimraf",
  54. "_id": "rimraf@2.2.8",
  55. "_from": "rimraf@~2.2.0"
  56. }