package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "escalade",
  3. "version": "3.1.1",
  4. "repository": "lukeed/escalade",
  5. "description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
  6. "module": "dist/index.mjs",
  7. "main": "dist/index.js",
  8. "types": "index.d.ts",
  9. "license": "MIT",
  10. "author": {
  11. "name": "Luke Edwards",
  12. "email": "luke.edwards05@gmail.com",
  13. "url": "https://lukeed.com"
  14. },
  15. "exports": {
  16. ".": [
  17. {
  18. "import": "./dist/index.mjs",
  19. "require": "./dist/index.js"
  20. },
  21. "./dist/index.js"
  22. ],
  23. "./sync": [
  24. {
  25. "import": "./sync/index.mjs",
  26. "require": "./sync/index.js"
  27. },
  28. "./sync/index.js"
  29. ]
  30. },
  31. "files": [
  32. "*.d.ts",
  33. "dist",
  34. "sync"
  35. ],
  36. "modes": {
  37. "sync": "src/sync.js",
  38. "default": "src/async.js"
  39. },
  40. "engines": {
  41. "node": ">=6"
  42. },
  43. "scripts": {
  44. "build": "bundt",
  45. "pretest": "npm run build",
  46. "test": "uvu -r esm test -i fixtures"
  47. },
  48. "keywords": [
  49. "find",
  50. "parent",
  51. "parents",
  52. "directory",
  53. "search",
  54. "walk"
  55. ],
  56. "devDependencies": {
  57. "bundt": "1.1.1",
  58. "esm": "3.2.25",
  59. "uvu": "0.3.3"
  60. }
  61. }