-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hook-emitter",
"version": "6.0.0",
"description": "Event emitter with support for asynchronous handlers and a sweet function hook mechanism.",
"type": "module",
"exports": "./src/index.js",
"author": "Chris Barber <[email protected]> (https://github.com/cb1kenobi)",
"license": "MIT",
"keywords": [
"hook",
"emitter",
"event",
"eventemitter",
"events",
"async",
"promise",
"promises",
"chain",
"link"
],
"scripts": {
"coverage": "c8 npm run test",
"lint": "eslint src test",
"prepublishOnly": "npm run lint",
"test": "npm run lint && mocha test/**/test-*.js --reporter spec"
},
"devDependencies": {
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.10.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"mocha": "^9.2.1"
},
"homepage": "https://github.com/cb1kenobi/hook-emitter",
"bugs": "https://github.com/cb1kenobi/hook-emitter/issues",
"repository": "https://github.com/cb1kenobi/hook-emitter",
"engines": {
"node": ">=14.15.0"
}
}