package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "findup-sync",
  3. "version": "5.0.0",
  4. "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Ben Alman <cowboy@rj3.net>",
  8. "Tyler Kellen <tyler@sleekcode.net>",
  9. "Jon Schlinkert <jon.schlinkert@sellside.com>",
  10. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  11. ],
  12. "repository": "gulpjs/findup-sync",
  13. "license": "MIT",
  14. "engines": {
  15. "node": ">= 10.13.0"
  16. },
  17. "main": "index.js",
  18. "files": [
  19. "index.js",
  20. "LICENSE"
  21. ],
  22. "scripts": {
  23. "lint": "eslint .",
  24. "pretest": "npm run lint",
  25. "test": "nyc mocha --async-only"
  26. },
  27. "dependencies": {
  28. "detect-file": "^1.0.0",
  29. "is-glob": "^4.0.3",
  30. "micromatch": "^4.0.4",
  31. "resolve-dir": "^1.0.1"
  32. },
  33. "devDependencies": {
  34. "eslint": "^7.21.0",
  35. "eslint-config-gulp": "^5.0.1",
  36. "eslint-plugin-node": "^11.1.0",
  37. "expect": "^27.3.1",
  38. "homedir-polyfill": "^1.0.3",
  39. "mocha": "^6.1.4",
  40. "normalize-path": "^3.0.0",
  41. "nyc": "^15.1.0",
  42. "resolve": "^1.20.0"
  43. },
  44. "nyc": {
  45. "reporter": [
  46. "lcov",
  47. "text-summary"
  48. ]
  49. },
  50. "prettier": {
  51. "singleQuote": true
  52. },
  53. "keywords": [
  54. "file",
  55. "find",
  56. "find-up",
  57. "findup",
  58. "glob",
  59. "match",
  60. "pattern",
  61. "resolve",
  62. "search"
  63. ]
  64. }