-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 887 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 887 Bytes
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
{
"name": "asyncemit",
"version": "3.0.1",
"description": "Asynchronously emit event an event based on the arguments length.",
"main": "index.js",
"scripts": {
"test": "c8 --reporter=lcov --reporter=text mocha",
"watch": "mocha --watch test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/primus/asyncemit"
},
"keywords": [
"async",
"emit",
"event",
"emitter",
"eventemitter",
"asyncemit"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/primus/asyncemit/issues"
},
"homepage": "https://github.com/primus/asyncemit",
"devDependencies": {
"assume": "~2.3.0",
"c8": "~7.3.5",
"coveralls": "~3.1.0",
"eventemitter3": "~4.0.0",
"mocha": "~8.2.1",
"pre-commit": "~1.2.0"
},
"peerDependencies": {
"eventemitter3": ">=1.1.0"
}
}