package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "fs-extra",
  3. "version": "3.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. "homepage": "https://github.com/jprichardson/node-fs-extra",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/jprichardson/node-fs-extra"
  9. },
  10. "keywords": [
  11. "fs",
  12. "file",
  13. "file system",
  14. "copy",
  15. "directory",
  16. "extra",
  17. "mkdirp",
  18. "mkdir",
  19. "mkdirs",
  20. "recursive",
  21. "json",
  22. "read",
  23. "write",
  24. "extra",
  25. "delete",
  26. "remove",
  27. "touch",
  28. "create",
  29. "text",
  30. "output",
  31. "move"
  32. ],
  33. "author": "JP Richardson <jprichardson@gmail.com>",
  34. "license": "MIT",
  35. "dependencies": {
  36. "graceful-fs": "^4.1.2",
  37. "jsonfile": "^3.0.0",
  38. "universalify": "^0.1.0"
  39. },
  40. "devDependencies": {
  41. "coveralls": "^2.11.2",
  42. "istanbul": "^0.4.5",
  43. "klaw": "^1.0.0",
  44. "klaw-sync": "^1.1.2",
  45. "minimist": "^1.1.1",
  46. "mocha": "^3.1.2",
  47. "proxyquire": "^1.7.10",
  48. "read-dir-files": "^0.1.1",
  49. "rimraf": "^2.2.8",
  50. "secure-random": "^1.1.1",
  51. "standard": "^10.0.2",
  52. "standard-markdown": "^2.3.0"
  53. },
  54. "main": "./lib/index",
  55. "scripts": {
  56. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  57. "coveralls": "npm run coverage && coveralls < coverage/lcov.info",
  58. "lint": "standard && standard-markdown",
  59. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  60. "test": "npm run lint && npm run unit",
  61. "unit": "node test.js"
  62. },
  63. "__npminstall_done": true,
  64. "_from": "fs-extra@3.0.1",
  65. "_resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-3.0.1.tgz"
  66. }