44 lines
986 B
JSON
44 lines
986 B
JSON
{
|
|
"name": "findup-sync",
|
|
"description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.",
|
|
"version": "2.0.0",
|
|
"author": "\"Cowboy\" Ben Alman (http://benalman.com)",
|
|
"repository": "js-cli/node-findup-sync",
|
|
"license": "MIT",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">= 0.10"
|
|
},
|
|
"scripts": {
|
|
"lint": "jshint index.js test/support/index.js test/test.js",
|
|
"test": "npm run lint && mocha"
|
|
},
|
|
"dependencies": {
|
|
"detect-file": "^1.0.0",
|
|
"is-glob": "^3.1.0",
|
|
"micromatch": "^3.0.4",
|
|
"resolve-dir": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"homedir-polyfill": "^1.0.1",
|
|
"is-absolute": "^1.0.0",
|
|
"jshint": "^2.9.5",
|
|
"mocha": "^3.5.0",
|
|
"normalize-path": "^2.1.1",
|
|
"resolve": "^1.4.0"
|
|
},
|
|
"keywords": [
|
|
"file",
|
|
"find",
|
|
"find-up",
|
|
"findup",
|
|
"glob",
|
|
"match",
|
|
"pattern",
|
|
"resolve",
|
|
"search"
|
|
]
|
|
}
|