exists-file
Version:
Check if a file exists. A fs.exists implementation that is not deprecated.
59 lines (58 loc) • 1.25 kB
JSON
{
"name": "exists-file",
"description": "Check if a file exists. A fs.exists implementation that is not deprecated.",
"homepage": "https://github.com/Kikobeats/exists-file",
"version": "3.0.2",
"main": "./index.js",
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kikobeats/exists-file.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/exists-file/issues"
},
"keywords": [
"directory",
"exists",
"file",
"file system",
"filesystem",
"fs",
"recursive"
],
"dependencies": {
"cb2promise": "~1.1.0"
},
"devDependencies": {
"coveralls": "latest",
"mocha": "latest",
"nyc": "latest",
"should": "latest",
"standard": "latest"
},
"engines": {
"node": ">= 4"
},
"files": [
"index.js"
],
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard lib index.js",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
}
}