forked from joshuafcole/async-node-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@digitalbazaar/async-node-events",
"version": "3.0.1-0",
"type": "module",
"description": "Asynchronous EventEmitter",
"scripts": {
"lint": "eslint",
"coverage": "cross-env NODE_ENV=test c8 --reporter=lcov --reporter=text-summary npm test",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly npm test",
"coverage-report": "c8 report",
"test": "mocha test"
},
"keywords": [
"async",
"events"
],
"homepage": "https://github.com/digitalbazaar/async-node-events#readme",
"author": "David Ellis",
"contributors": [
{
"name": "Joshua Cole",
"email": "joshuafcole@gmail.com"
},
{
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
}
],
"license": "MIT",
"bugs": "https://github.com/digitalbazaar/async-node-events/issues",
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/async-node-events"
},
"main": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"dependencies": {
"is-promise": "^4.0.0"
},
"devDependencies": {
"@digitalbazaar/eslint-config": "^8.0.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"cross-env": "^10.1.0",
"eslint": "^9.39.3",
"mocha": "^11.7.5",
"mocha-lcov-reporter": "^1.3.0"
},
"engines": {
"node": ">=20"
},
"c8": {
"exclude": [
"test"
]
}
}