recursive-lookup
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -1,3 +0,3 @@ | ||
import fs from 'fs/promises'; | ||
import path from 'path'; | ||
import fs from 'node:fs/promises'; | ||
import path from 'node:path'; | ||
@@ -4,0 +4,0 @@ export default async function recursiveLookup(folderPath, filter) { |
{ | ||
"name": "recursive-lookup", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"version": "1.1.0", | ||
"description": "Dependency-free and fast async recursive fs lookups in node.js", | ||
"type": "module", | ||
"author": "Izel Nakri", | ||
"license": "MIT", | ||
"keywords": [ | ||
"fs", | ||
"lookup", | ||
"file lookup", | ||
"recursive file lookup", | ||
"recursive", | ||
"recursive lookup" | ||
], | ||
"main": "index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/izelnakri/recursive-lookup.git" | ||
}, | ||
"files": [ | ||
@@ -13,7 +25,34 @@ "index.js" | ||
"scripts": { | ||
"test": "ava" | ||
"changelog:unreleased": "node_modules/.bin/auto-changelog --stdout --commit-limit false --package --unreleased-only --hide-credit --sort-commits date-desc", | ||
"changelog:preview": "node_modules/.bin/auto-changelog --stdout --commit-limit false --package -u --sort-commits date-desc", | ||
"changelog:update": "node_modules/.bin/auto-changelog --commit-limit false --package --sort-commits date-desc", | ||
"release:alpha": "node_modules/.bin/release-it --preRelease=alpha --no-git.requireUpstream", | ||
"release:beta": "node_modules/.bin/release-it --preRelease=beta --no-git.requireUpstream", | ||
"release": "node_modules/.bin/release-it", | ||
"test": "node --test test/index.js" | ||
}, | ||
"devDependencies": { | ||
"ava": "^3.15.0" | ||
"auto-changelog": "^2.4.0", | ||
"prettier": "^2.8.8", | ||
"release-it": "^15.10.3" | ||
}, | ||
"volta": { | ||
"node": "20.1.0" | ||
}, | ||
"prettier": { | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"arrowParens": "always" | ||
}, | ||
"release-it": { | ||
"git": { | ||
"changelog": "npm run changelog:unreleased" | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"hooks": { | ||
"after:bump": "npm run changelog:update" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
2630
0
3