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

event-emitter-grouped

Package Overview
Dependencies
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

event-emitter-grouped - npm Package Compare versions

Comparing version 6.0.0 to 6.1.0

50

package.json
{
"title": "Event Emitter Grouped",
"name": "event-emitter-grouped",
"version": "6.0.0",
"version": "6.1.0",
"description": "Emit events in serial or parallel with support for synchronous and asynchronous listeners",

@@ -82,3 +82,3 @@ "homepage": "https://github.com/bevry/event-emitter-grouped",

{
"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",

@@ -93,3 +93,3 @@ "entry": "index.js",

"engines": {
"node": "8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false

@@ -113,16 +113,2 @@ }

{
"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",

@@ -146,5 +132,5 @@ "directory": "edition-node-4",

"dependencies": {
"editions": "^6.10.0",
"taskgroup": "^9.1.0",
"unbounded": "^5.0.0"
"editions": "^6.11.0",
"taskgroup": "^9.2.0",
"unbounded": "^5.1.0"
},

@@ -157,3 +143,3 @@ "devDependencies": {

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

@@ -165,3 +151,3 @@ "eslint-config-bevry": "^3.29.0",

"jsdoc": "^4.0.2",
"kava": "3.2.0",
"kava": "^7.0.0",
"prettier": "^3.1.0",

@@ -174,5 +160,4 @@ "projectz": "^2.23.0",

"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-node-21 && npm run our:compile:edition-node-4",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-node-4",
"our:compile:edition-browsers": "env BABEL_ENV=edition-browsers babel --out-dir ./edition-browsers ./source",
"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: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",

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

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

@@ -249,0 +217,0 @@ "sourceType": "script",

5

README.md

@@ -110,3 +110,3 @@ <!-- TITLE/ -->

<script type="module">
import * as pkg from '//dev.jspm.io/event-emitter-grouped@6.0.0'
import * as pkg from '//dev.jspm.io/event-emitter-grouped@6.1.0'
</script>

@@ -120,5 +120,4 @@ ```

<ul><li><code>event-emitter-grouped</code> aliases <code>event-emitter-grouped/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>event-emitter-grouped/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>event-emitter-grouped/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>event-emitter-grouped/edition-browsers/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for web browsers 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>event-emitter-grouped/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>event-emitter-grouped/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>

@@ -125,0 +124,0 @@

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