forked from yuanliwei/readable-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@gjsify/readable-stream",
"version": "4.2.0",
"description": "Node.js Streams, a user-land copy of the stream library from Node.js",
"homepage": "https://github.com/nodejs/readable-stream",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://choosealicense.com/licenses/mit/"
}
],
"keywords": [
"readable",
"stream",
"pipe"
],
"repository": {
"type": "git",
"url": "git://github.com/nodejs/readable-stream"
},
"bugs": {
"url": "https://github.com/nodejs/readable-stream/issues"
},
"type": "module",
"main": "out/index.js",
"module": "out/index.js",
"files": [
"out",
"LICENSE",
"README.md"
],
"browser": {
"util": "./lib/ours/util.js"
},
"scripts": {
"clear": "rm -rf out",
"print:name": "echo '@gjsify/readable-stream'",
"build": "yarn print:name && yarn build:gjsify",
"build:gjsify": "gjsify build --library lib/**/*.{ts,js}",
"git:upstream:init": "git remote add upstream https://github.com/nodejs/readable-stream.git || exit 0",
"git:upstream:merge": "yarn git:upstream:init && git fetch upstream && git merge upstream/main"
},
"dependencies": {
"@gjsify/node-internal": "workspace:^",
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"devDependencies": {
"@gjsify/cli": "workspace:^"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
}