-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* BREAKING CHANGE: Changed package to an ES module. * BREAKING CHANGE: Require Node.js 12 or newer.
- Loading branch information
Showing
16 changed files
with
122 additions
and
5,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
._* | ||
.DS_Store* | ||
.nyc_output | ||
/coverage | ||
/dist | ||
/docs | ||
coverage | ||
node_modules | ||
npm-debug.log | ||
yarn-error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
._* | ||
.babelrc | ||
.codeclimate.yml | ||
.DS_Store | ||
.eslintrc | ||
.git* | ||
.nyc_output | ||
.travis.yml | ||
appveyor.yml | ||
coverage | ||
docs | ||
gulpfile.js | ||
node_modules | ||
npm-debug.log | ||
yarn.lock | ||
yarn-error.log | ||
src | ||
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"name": "hook-emitter", | ||
"version": "4.1.2", | ||
"version": "5.0.0", | ||
"description": "Event emitter with support for asynchronous handlers and a sweet function hook mechanism.", | ||
"main": "./dist/index.js", | ||
"type": "module", | ||
"exports": "./src/index.js", | ||
"author": "Chris Barber <[email protected]> (https://github.com/cb1kenobi)", | ||
"license": "MIT", | ||
"keywords": [ | ||
|
@@ -18,50 +19,26 @@ | |
"link" | ||
], | ||
"scripts": { | ||
"build": "gulp build", | ||
"coverage": "gulp coverage", | ||
"docs": "gulp docs", | ||
"prepare": "gulp build", | ||
"test": "gulp test" | ||
}, | ||
"dependencies": { | ||
"source-map-support": "^0.5.19" | ||
"coverage": "c8 npm run test", | ||
"lint": "eslint src test", | ||
"prepack": "npm run lint", | ||
"test": "npm run lint && mocha test/**/test-*.js --reporter spec" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.13.1", | ||
"@babel/plugin-transform-modules-commonjs": "^7.13.0", | ||
"@babel/register": "^7.13.0", | ||
"ansi-colors": "^4.1.1", | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.2.2", | ||
"babel-plugin-istanbul": "^6.0.0", | ||
"c8": "^7.6.0", | ||
"chai": "^4.3.0", | ||
"chai-as-promised": "^7.1.1", | ||
"coveralls": "^3.1.0", | ||
"esdoc": "^1.1.0", | ||
"esdoc-ecmascript-proposal-plugin": "^1.0.0", | ||
"esdoc-standard-plugin": "^1.0.0", | ||
"eslint": "^7.20.0", | ||
"eslint-plugin-chai-expect": "^2.2.0", | ||
"eslint-plugin-mocha": "^8.0.0", | ||
"eslint-plugin-promise": "^4.3.1", | ||
"eslint-plugin-security": "^1.4.0", | ||
"fancy-log": "^1.3.3", | ||
"fs-extra": "^9.1.0", | ||
"gulp": "^4.0.2", | ||
"gulp-babel": "^8.0.0", | ||
"gulp-debug": "^4.0.0", | ||
"gulp-eslint": "^6.0.0", | ||
"gulp-load-plugins": "^2.0.6", | ||
"gulp-plumber": "^1.2.1", | ||
"gulp-sourcemaps": "^3.0.0", | ||
"mocha": "^8.3.0", | ||
"nyc": "^15.1.0" | ||
"mocha": "^8.3.0" | ||
}, | ||
"homepage": "https://github.com/cb1kenobi/hook-emitter", | ||
"bugs": "https://github.com/cb1kenobi/hook-emitter/issues", | ||
"repository": "https://github.com/cb1kenobi/hook-emitter", | ||
"engines": { | ||
"node": ">=8" | ||
"node": ">=12" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.