package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "findup-sync",
  3. "version": "3.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> (http://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": ">= 0.10"
  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": "mocha --async-only",
  26. "cover": "istanbul cover _mocha --report lcovonly",
  27. "coveralls": "npm run cover && istanbul-coveralls"
  28. },
  29. "dependencies": {
  30. "detect-file": "^1.0.0",
  31. "is-glob": "^4.0.0",
  32. "micromatch": "^3.0.4",
  33. "resolve-dir": "^1.0.1"
  34. },
  35. "devDependencies": {
  36. "eslint": "^2.13.0",
  37. "eslint-config-gulp": "^3.0.1",
  38. "expect": "^1.20.2",
  39. "homedir-polyfill": "^1.0.1",
  40. "istanbul": "^0.4.3",
  41. "istanbul-coveralls": "^1.0.3",
  42. "mocha": "^3.5.3",
  43. "normalize-path": "^3.0.0",
  44. "resolve": "^1.4.0"
  45. },
  46. "keywords": [
  47. "file",
  48. "find",
  49. "find-up",
  50. "findup",
  51. "glob",
  52. "match",
  53. "pattern",
  54. "resolve",
  55. "search"
  56. ]
  57. }