-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
60 lines (60 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "get-stream",
"version": "9.0.1",
"description": "Get a stream as a string, Buffer, ArrayBuffer or array",
"license": "MIT",
"repository": "sindresorhus/get-stream",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./source/index.d.ts",
"browser": "./source/exports.js",
"default": "./source/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"benchmark": "node benchmarks/index.js",
"test": "xo && ava && tsd --typings=source/index.d.ts --files=source/index.test-d.ts"
},
"files": [
"source",
"!*.test-d.ts"
],
"keywords": [
"get",
"stream",
"promise",
"concat",
"string",
"text",
"buffer",
"read",
"data",
"consume",
"readable",
"readablestream",
"object",
"concat"
],
"dependencies": {
"@sec-ant/readable-stream": "^0.6.0",
"is-stream": "^4.0.1"
},
"devDependencies": {
"@types/node": "^20.8.9",
"ava": "^6.1.2",
"onetime": "^7.0.0",
"precise-now": "^3.0.0",
"stream-json": "^1.8.0",
"tsd": "^0.31.0",
"xo": "^0.59.0"
}
}