wishthis/node_modules/findup-sync/package.json

45 lines
986 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"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"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"main": "index.js",
"engines": {
"node": ">= 0.10"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"scripts": {
"lint": "jshint index.js test/support/index.js test/test.js",
"test": "npm run lint && mocha"
2022-02-23 16:41:13 +00:00
},
2022-01-21 08:28:41 +00:00
"dependencies": {
"detect-file": "^1.0.0",
2022-04-08 10:55:35 +00:00
"is-glob": "^3.1.0",
2022-01-21 08:28:41 +00:00
"micromatch": "^3.0.4",
"resolve-dir": "^1.0.1"
},
"devDependencies": {
"homedir-polyfill": "^1.0.1",
2022-04-08 10:55:35 +00:00
"is-absolute": "^1.0.0",
"jshint": "^2.9.5",
"mocha": "^3.5.0",
"normalize-path": "^2.1.1",
2022-01-21 08:28:41 +00:00
"resolve": "^1.4.0"
},
"keywords": [
"file",
"find",
"find-up",
"findup",
"glob",
"match",
"pattern",
"resolve",
"search"
2022-04-08 10:55:35 +00:00
]
2022-01-21 08:28:41 +00:00
}