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

safefs

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

safefs - npm Package Compare versions

Comparing version 8.9.0 to 8.10.0-next.1704169742.613c6d0e59a478223a12aebafd1863c414026a48

69

package.json
{
"title": "Safe FS",
"name": "safefs",
"version": "8.9.0",
"version": "8.10.0-next.1704169742.613c6d0e59a478223a12aebafd1863c414026a48",
"license": "Artistic-2.0",

@@ -19,3 +19,2 @@ "description": "Stop getting EMFILE errors! Open only as many files as the operating system supports.",

"emfile",
"es2015",
"esnext",

@@ -77,3 +76,3 @@ "fs",

"Benjamin Lupton <b@lupton.cc> (https://balupton.com) (https://github.com/balupton)",
"James Gill (https://www.linkedin.com/in/jagill) (https://github.com/jagill)",
"James Gill (https://linkedin.com/in/jagill) (https://github.com/jagill)",
"Kyle Robinson Young (https://dontkry.com) (https://github.com/shama)",

@@ -108,3 +107,3 @@ "Sean Fridman <mail@seanfridman.com> (https://seanfridman.com) (https://github.com/sfrdmn)"

"Nermal <nermalcat69@skiff.com> (https://arjunaditya.vercel.app) (https://github.com/nermalcat69)",
"Pleo (https://www.pleo.io) (https://github.com/pleo-io)",
"Pleo (https://pleo.io) (https://github.com/pleo-io)",
"Poonacha Medappa (https://poonachamedappa.com) (https://github.com/km-Poonacha)",

@@ -124,3 +123,3 @@ "Rob Morris <rob@prismatik.com.au> (https://github.com/Rob-Morris)",

{
"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 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"directory": "source",

@@ -135,25 +134,9 @@ "entry": "index.js",

"engines": {
"node": "8 || 10 || 12 || 14 || 16 || 18 || 20 || 21"
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21"
}
},
{
"description": "ESNext compiled for Node.js 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"directory": "edition-node-6",
"entry": "index.js",
"tags": [
"compiled",
"javascript",
"es2015",
"require"
],
"engines": {
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
}
],
"type": "commonjs",
"main": "index.cjs",
"main": "source/index.js",
"dependencies": {
"editions": "^6.21.0",
"graceful-fs": "^4.2.11",

@@ -163,9 +146,5 @@ "version-compare": "^3.10.0"

"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.6",
"assert-helpers": "^11.12.0",
"eslint": "^8.56.0",
"eslint-config-bevry": "^5.3.0",
"eslint-config-bevry": "^5.5.0",
"eslint-config-prettier": "^9.1.0",

@@ -175,11 +154,10 @@ "eslint-plugin-babel": "^5.3.1",

"jsdoc": "^4.0.2",
"kava": "^7.7.0",
"kava": "^7.9.0",
"prettier": "^3.1.1",
"projectz": "^4.1.1",
"valid-directory": "^4.8.0"
"projectz": "^4.2.0",
"valid-directory": "^4.9.0"
},
"scripts": {
"our:clean": "rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-node-6",
"our:compile:edition-node-6": "env BABEL_ENV=edition-node-6 babel --out-dir ./edition-node-6 ./source && printf '%s' '{\"type\": \"commonjs\"}' > edition-node-6/package.json",
"our:compile": "printf '%s\n' 'no need for this project'",
"our:deploy": "printf '%s\n' 'no need for this project'",

@@ -202,25 +180,4 @@ "our:meta": "npm run our:meta:docs && npm run our:meta:projectz",

"our:verify:prettier": "prettier --write .",
"test": "node ./test.cjs"
"test": "node ./source/test.js"
},
"babel": {
"env": {
"edition-node-6": {
"sourceType": "script",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6"
},
"modules": "commonjs"
}
]
],
"plugins": [
"@babel/proposal-object-rest-spread"
]
}
}
},
"eslintConfig": {

@@ -234,5 +191,5 @@ "extends": [

"singleQuote": true,
"trailingComma": "es5",
"trailingComma": "all",
"endOfLine": "lf"
}
}

7

README.md

@@ -85,5 +85,4 @@ <!-- TITLE/ -->

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

@@ -173,3 +172,3 @@ ### [TypeScript](https://www.typescriptlang.org/ "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.")

- [Nermal](https://arjunaditya.vercel.app)
- [Pleo](https://www.pleo.io)
- [Pleo](https://pleo.io)
- [Poonacha Medappa](https://poonachamedappa.com)

@@ -176,0 +175,0 @@ - [Rob Morris](https://github.com/Rob-Morris)

@@ -219,3 +219,3 @@ /* eslint no-sync:0 */

{ recursive: true, force: true, maxRetries: 2 },
wrappedNext
wrappedNext,
)

@@ -222,0 +222,0 @@ } else if (

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