package.json 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "totalist",
  3. "version": "1.1.0",
  4. "repository": "lukeed/totalist",
  5. "description": "A tiny (195B to 224B) utility to recursively list all (total) files in a directory",
  6. "module": "dist/index.mjs",
  7. "main": "dist/index.js",
  8. "types": "index.d.ts",
  9. "license": "MIT",
  10. "files": [
  11. "index.d.ts",
  12. "dist",
  13. "sync"
  14. ],
  15. "author": {
  16. "name": "Luke Edwards",
  17. "email": "luke.edwards05@gmail.com",
  18. "url": "https://lukeed.com"
  19. },
  20. "engines": {
  21. "node": ">=6"
  22. },
  23. "keywords": [
  24. "list",
  25. "recursive",
  26. "files",
  27. "glob",
  28. "tree"
  29. ],
  30. "scripts": {
  31. "build": "bundt",
  32. "postbuild": "cp sync.d.ts sync/index.d.ts",
  33. "test": "uvu -r esm test -i fixtures"
  34. },
  35. "modes": {
  36. "sync": "src/sync.js",
  37. "default": "src/async.js"
  38. },
  39. "devDependencies": {
  40. "bundt": "1.0.1",
  41. "esm": "3.2.25",
  42. "premove": "1.0.0",
  43. "uvu": "0.0.13"
  44. }
  45. }