-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "async-stream-emitter",
"version": "7.0.1",
"description": "An alternantive to EventEmitter using consumable streams.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/rollup --config ./rollup.config.js",
"test": "./node_modules/mocha/bin/_mocha --reporter spec --timeout 10000 --slow 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketCluster/async-stream-emitter.git"
},
"keywords": [
"iterable",
"async",
"stream",
"event",
"emitter",
"for-await-of"
],
"author": "Jonathan Gros-Dubois",
"license": "MIT",
"bugs": {
"url": "https://github.com/SocketCluster/async-stream-emitter/issues"
},
"homepage": "https://github.com/SocketCluster/async-stream-emitter#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"mocha": "^10.2.0",
"rollup": "^3.28.1"
},
"dependencies": {
"stream-demux": "^10.0.1"
}
}