package.json 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "graceful-fs",
  3. "description": "A drop-in replacement for fs, making various improvements.",
  4. "version": "4.2.8",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/isaacs/node-graceful-fs"
  8. },
  9. "main": "graceful-fs.js",
  10. "directories": {
  11. "test": "test"
  12. },
  13. "scripts": {
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "postpublish": "git push origin --follow-tags",
  17. "test": "nyc --silent node test.js | tap -c -",
  18. "posttest": "nyc report"
  19. },
  20. "keywords": [
  21. "fs",
  22. "module",
  23. "reading",
  24. "retry",
  25. "retries",
  26. "queue",
  27. "error",
  28. "errors",
  29. "handling",
  30. "EMFILE",
  31. "EAGAIN",
  32. "EINVAL",
  33. "EPERM",
  34. "EACCESS"
  35. ],
  36. "license": "ISC",
  37. "devDependencies": {
  38. "import-fresh": "^2.0.0",
  39. "mkdirp": "^0.5.0",
  40. "rimraf": "^2.2.8",
  41. "tap": "^12.7.0"
  42. },
  43. "files": [
  44. "fs.js",
  45. "graceful-fs.js",
  46. "legacy-streams.js",
  47. "polyfills.js",
  48. "clone.js"
  49. ]
  50. }