65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "name": "findup-sync",
 | |
|   "version": "5.0.0",
 | |
|   "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.",
 | |
|   "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
 | |
|   "contributors": [
 | |
|     "Ben Alman <cowboy@rj3.net>",
 | |
|     "Tyler Kellen <tyler@sleekcode.net>",
 | |
|     "Jon Schlinkert <jon.schlinkert@sellside.com>",
 | |
|     "Blaine Bublitz <blaine.bublitz@gmail.com>"
 | |
|   ],
 | |
|   "repository": "gulpjs/findup-sync",
 | |
|   "license": "MIT",
 | |
|   "engines": {
 | |
|     "node": ">= 10.13.0"
 | |
|   },
 | |
|   "main": "index.js",
 | |
|   "files": [
 | |
|     "index.js",
 | |
|     "LICENSE"
 | |
|   ],
 | |
|   "scripts": {
 | |
|     "lint": "eslint .",
 | |
|     "pretest": "npm run lint",
 | |
|     "test": "nyc mocha --async-only"
 | |
|   },
 | |
|   "dependencies": {
 | |
|     "detect-file": "^1.0.0",
 | |
|     "is-glob": "^4.0.3",
 | |
|     "micromatch": "^4.0.4",
 | |
|     "resolve-dir": "^1.0.1"
 | |
|   },
 | |
|   "devDependencies": {
 | |
|     "eslint": "^7.21.0",
 | |
|     "eslint-config-gulp": "^5.0.1",
 | |
|     "eslint-plugin-node": "^11.1.0",
 | |
|     "expect": "^27.3.1",
 | |
|     "homedir-polyfill": "^1.0.3",
 | |
|     "mocha": "^6.1.4",
 | |
|     "normalize-path": "^3.0.0",
 | |
|     "nyc": "^15.1.0",
 | |
|     "resolve": "^1.20.0"
 | |
|   },
 | |
|   "nyc": {
 | |
|     "reporter": [
 | |
|       "lcov",
 | |
|       "text-summary"
 | |
|     ]
 | |
|   },
 | |
|   "prettier": {
 | |
|     "singleQuote": true
 | |
|   },
 | |
|   "keywords": [
 | |
|     "file",
 | |
|     "find",
 | |
|     "find-up",
 | |
|     "findup",
 | |
|     "glob",
 | |
|     "match",
 | |
|     "pattern",
 | |
|     "resolve",
 | |
|     "search"
 | |
|   ]
 | |
| }
 |