package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "fs-extra",
  3. "version": "7.0.1",
  4. "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",
  5. "engines": {
  6. "node": ">=6 <7 || >=8"
  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. ],
  36. "author": "JP Richardson <jprichardson@gmail.com>",
  37. "license": "MIT",
  38. "dependencies": {
  39. "graceful-fs": "^4.1.2",
  40. "jsonfile": "^4.0.0",
  41. "universalify": "^0.1.0"
  42. },
  43. "devDependencies": {
  44. "coveralls": "^3.0.0",
  45. "istanbul": "^0.4.5",
  46. "klaw": "^2.1.1",
  47. "klaw-sync": "^3.0.2",
  48. "minimist": "^1.1.1",
  49. "mocha": "^5.0.5",
  50. "proxyquire": "^2.0.1",
  51. "read-dir-files": "^0.1.1",
  52. "rimraf": "^2.2.8",
  53. "secure-random": "^1.1.1",
  54. "semver": "^5.3.0",
  55. "standard": "^11.0.1",
  56. "standard-markdown": "^4.0.1"
  57. },
  58. "main": "./lib/index.js",
  59. "scripts": {
  60. "full-ci": "npm run lint && npm run coverage",
  61. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  62. "coveralls": "coveralls < coverage/lcov.info",
  63. "lint": "standard",
  64. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  65. "test": "npm run lint && npm run unit",
  66. "unit": "node test.js"
  67. }
  68. }