package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "fs-extra",
  3. "version": "5.0.0",
  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": "^4.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. "semver": "^5.3.0",
  52. "standard": "^10.0.2",
  53. "standard-markdown": "^4.0.1"
  54. },
  55. "main": "./lib/index.js",
  56. "scripts": {
  57. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  58. "coveralls": "coveralls < coverage/lcov.info",
  59. "lint": "standard && standard-markdown",
  60. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  61. "test": "npm run lint && npm run unit",
  62. "unit": "node test.js"
  63. }
  64. }