package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "_from": "fs-extra@^9.0.1",
  3. "_id": "fs-extra@9.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
  6. "_location": "/fs-extra",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "fs-extra@^9.0.1",
  12. "name": "fs-extra",
  13. "escapedName": "fs-extra",
  14. "rawSpec": "^9.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^9.0.1"
  17. },
  18. "_requiredBy": [
  19. "/react-scripts"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
  22. "_shasum": "5954460c764a8da2094ba3554bf839e6b9a7c86d",
  23. "_spec": "fs-extra@^9.0.1",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\react-scripts",
  25. "author": {
  26. "name": "JP Richardson",
  27. "email": "jprichardson@gmail.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/jprichardson/node-fs-extra/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "at-least-node": "^1.0.0",
  35. "graceful-fs": "^4.2.0",
  36. "jsonfile": "^6.0.1",
  37. "universalify": "^2.0.0"
  38. },
  39. "deprecated": false,
  40. "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
  41. "devDependencies": {
  42. "coveralls": "^3.0.0",
  43. "klaw": "^2.1.1",
  44. "klaw-sync": "^3.0.2",
  45. "minimist": "^1.1.1",
  46. "mocha": "^5.0.5",
  47. "nyc": "^15.0.0",
  48. "proxyquire": "^2.0.1",
  49. "read-dir-files": "^0.1.1",
  50. "standard": "^14.1.0"
  51. },
  52. "engines": {
  53. "node": ">=10"
  54. },
  55. "files": [
  56. "lib/",
  57. "!lib/**/__tests__/"
  58. ],
  59. "homepage": "https://github.com/jprichardson/node-fs-extra",
  60. "keywords": [
  61. "fs",
  62. "file",
  63. "file system",
  64. "copy",
  65. "directory",
  66. "extra",
  67. "mkdirp",
  68. "mkdir",
  69. "mkdirs",
  70. "recursive",
  71. "json",
  72. "read",
  73. "write",
  74. "extra",
  75. "delete",
  76. "remove",
  77. "touch",
  78. "create",
  79. "text",
  80. "output",
  81. "move",
  82. "promise"
  83. ],
  84. "license": "MIT",
  85. "main": "./lib/index.js",
  86. "name": "fs-extra",
  87. "repository": {
  88. "type": "git",
  89. "url": "git+https://github.com/jprichardson/node-fs-extra.git"
  90. },
  91. "scripts": {
  92. "coverage": "nyc -r lcovonly npm run unit",
  93. "coveralls": "coveralls < coverage/lcov.info",
  94. "full-ci": "npm run lint && npm run coverage",
  95. "lint": "standard",
  96. "test": "npm run lint && npm run unit",
  97. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  98. "unit": "node test.js"
  99. },
  100. "version": "9.1.0"
  101. }