-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1002 Bytes
/
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
{
"name": "iterable-emitter",
"version": "0.0.1",
"description": "This utility turns a streaming emitter into an iterable, and provides a buffer",
"main": "index.js",
"types": "index.d.ts",
"type":"module",
"scripts": {
"test": "node ./test/test.js"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"buffer",
"iterable",
"emitter",
"iterator"
],
"author": "Kurt H. Kiley",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@types/tedious": "^4.0.7",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"sinon": "^13.0.1"
},
"dependencies": {
"denque": "^2.0.1",
"eventemitter3": "^4.0.7",
"klona": "^2.0.5",
"p-event": "^5.0.1"
}
}