package.json 634 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "author": "Jamison Dance <jergason@gmail.com> (http://jamison.dance.com/)",
  3. "name": "recursive-readdir",
  4. "description": "Get an array of all files in a directory and subdirectories.",
  5. "license": "MIT",
  6. "version": "2.2.3",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/jergason/recursive-readdir.git"
  10. },
  11. "main": "./index.js",
  12. "files": [
  13. "index.js"
  14. ],
  15. "scripts": {
  16. "test": "mocha test/"
  17. },
  18. "keywords": [
  19. "directory",
  20. "lister"
  21. ],
  22. "engines": {
  23. "node": ">=6.0.0"
  24. },
  25. "dependencies": {
  26. "minimatch": "^3.0.5"
  27. },
  28. "devDependencies": {
  29. "mocha": "6.1.4"
  30. }
  31. }