You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "fs-extra",
  3. "version": "8.1.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. "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.2.0",
  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. "semver": "^5.3.0",
  53. "standard": "^12.0.1"
  54. },
  55. "main": "./lib/index.js",
  56. "files": [
  57. "lib/",
  58. "!lib/**/__tests__/"
  59. ],
  60. "scripts": {
  61. "full-ci": "npm run lint && npm run coverage",
  62. "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
  63. "coveralls": "coveralls < coverage/lcov.info",
  64. "lint": "standard",
  65. "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
  66. "test": "npm run lint && npm run unit",
  67. "unit": "node test.js"
  68. }
  69. }