package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "fs-extra",
  3. "version": "10.1.0",
  4. "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
  5. "engines": {
  6. "node": ">=12"
  7. },
  8. "homepage": "https://github.com/jprichardson/node-fs-extra",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jprichardson/node-fs-extra"
  12. },
  13. "keywords": [
  14. "fs",
  15. "file",
  16. "file system",
  17. "copy",
  18. "directory",
  19. "extra",
  20. "mkdirp",
  21. "mkdir",
  22. "mkdirs",
  23. "recursive",
  24. "json",
  25. "read",
  26. "write",
  27. "extra",
  28. "delete",
  29. "remove",
  30. "touch",
  31. "create",
  32. "text",
  33. "output",
  34. "move",
  35. "promise"
  36. ],
  37. "author": "JP Richardson <jprichardson@gmail.com>",
  38. "license": "MIT",
  39. "dependencies": {
  40. "graceful-fs": "^4.2.0",
  41. "jsonfile": "^6.0.1",
  42. "universalify": "^2.0.0"
  43. },
  44. "devDependencies": {
  45. "at-least-node": "^1.0.0",
  46. "klaw": "^2.1.1",
  47. "klaw-sync": "^3.0.2",
  48. "minimist": "^1.1.1",
  49. "mocha": "^5.0.5",
  50. "nyc": "^15.0.0",
  51. "proxyquire": "^2.0.1",
  52. "read-dir-files": "^0.1.1",
  53. "standard": "^16.0.3"
  54. },
  55. "main": "./lib/index.js",
  56. "files": [
  57. "lib/",
  58. "!lib/**/__tests__/"
  59. ],
  60. "scripts": {
  61. "lint": "standard",
  62. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  63. "test": "npm run lint && npm run unit",
  64. "unit": "nyc node test.js"
  65. },
  66. "sideEffects": false
  67. }