Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

scandirectory

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scandirectory - npm Package Compare versions

Comparing version 7.0.0 to 7.1.0

54

package.json
{
"name": "scandirectory",
"version": "7.0.0",
"version": "7.1.0",
"description": "Scan a directory recursively with a lot of control and power",

@@ -77,3 +77,3 @@ "homepage": "https://github.com/bevry/scandirectory",

{
"description": "ESNext source code for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"description": "ESNext source code for Node.js 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"directory": "source",

@@ -88,20 +88,6 @@ "entry": "index.js",

"engines": {
"node": "8 || 10 || 12 || 14 || 16 || 18 || 20 || 21"
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21"
}
},
{
"description": "ESNext compiled for Node.js 21 with Require for modules",
"directory": "edition-node-21",
"entry": "index.js",
"tags": [
"compiled",
"javascript",
"require"
],
"engines": {
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
{
"description": "ESNext compiled for Node.js 4 with Require for modules",

@@ -124,5 +110,5 @@ "directory": "edition-node-4",

"dependencies": {
"editions": "^6.11.0",
"ignorefs": "^4.0.0",
"readdir-cluster": "^4.0.0"
"editions": "^6.13.0",
"ignorefs": "^4.1.0",
"readdir-cluster": "^5.0.0"
},

@@ -135,3 +121,3 @@ "devDependencies": {

"@bevry/update-contributors": "^1.23.0",
"assert-helpers": "^11.2.0",
"assert-helpers": "^11.4.0",
"eslint": "^8.53.0",

@@ -141,11 +127,10 @@ "eslint-config-bevry": "^4.0.0",

"eslint-plugin-prettier": "^5.0.1",
"kava": "^7.1.0",
"kava": "^7.2.0",
"prettier": "^3.1.0",
"projectz": "^3.0.0",
"valid-directory": "^4.1.0"
"projectz": "^3.1.0",
"valid-directory": "^4.2.0"
},
"scripts": {
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-node-21 && npm run our:compile:edition-node-4",
"our:compile:edition-node-21": "env BABEL_ENV=edition-node-21 babel --out-dir ./edition-node-21 ./source && printf '%s' '{\"type\": \"commonjs\"}' > edition-node-21/package.json",
"our:compile": "npm run our:compile:edition-node-4",
"our:compile:edition-node-4": "env BABEL_ENV=edition-node-4 babel --out-dir ./edition-node-4 ./source && printf '%s' '{\"type\": \"commonjs\"}' > edition-node-4/package.json",

@@ -183,19 +168,2 @@ "our:deploy": "printf '%s\n' 'no need for this project'",

"env": {
"edition-node-21": {
"sourceType": "script",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "21"
},
"modules": "commonjs"
}
]
],
"plugins": [
"@babel/proposal-object-rest-spread"
]
},
"edition-node-4": {

@@ -202,0 +170,0 @@ "sourceType": "script",

@@ -119,4 +119,3 @@ <!-- TITLE/ -->

<ul><li><code>scandirectory</code> aliases <code>scandirectory/index.cjs</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li>
<li><code>scandirectory/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>scandirectory/edition-node-21/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>scandirectory/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>scandirectory/edition-node-4/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul>

@@ -123,0 +122,0 @@

@@ -5,3 +5,3 @@ # Security Policy

This project meets standardized secure software development practices, including 2FA for all members, password managers with monitoring, secure secret retrieval instead of storage. [Learn more about our practices.](https://tidelift.com/funding/github/npm/scandirectory)
This project meets standardized secure software development practices, including 2FA for all members, password managers with monitoring, secure secret retrieval instead of storage. [Learn about our practices.](https://tidelift.com/funding/github/npm/scandirectory)

@@ -12,5 +12,5 @@ ## Supported Versions

[Refer to supported ecosystem versions: `Editions` section in `README.md`.](https://github.com/bevry/scandirectory/blob/master/README.md#Editions)
[Refer to supported ecosystem versions: `Editions` section in `README.md`](https://github.com/bevry/scandirectory/blob/master/README.md#Editions)
[Refer to automated support of ecosystem versions: `boundation` entries in `HISTORY.md`.](https://github.com/bevry/scandirectory/blob/master/HISTORY.md)
[Refer to automated support of ecosystem versions: `boundation` entries in `HISTORY.md`](https://github.com/bevry/scandirectory/blob/master/HISTORY.md)

@@ -17,0 +17,0 @@ Besides testing and verification, out CI also [auto-merges](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions) [Dependabot security updates](https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/about-dependabot-security-updates) and [auto-publishes](https://github.com/bevry-actions/npm) successful builds of the [`master` branch](https://github.com/bevry/wait/actions?query=branch%3Amaster) to the [`next` version tag](https://www.npmjs.com/package/scandirectory?activeTab=versions), offering immediate resolutions before scheduled maintenance releases.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc