-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 900 Bytes
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
{
"name": "@janvanbouwel/multiplex",
"type": "module",
"version": "0.1.0",
"description": "Multiplexes multiple independent streams over one stream.",
"exports": "./dist/index.js",
"author": "Jan Van Bouwel",
"repository": {
"type": "git",
"url": "git+https://github.com/janvanbouwel/nodejs-multiplex.git"
},
"license": "ISC",
"scripts": {
"test": "node dist/test.js",
"build": "rimraf dist/ && tsc",
"eslint": "eslint src",
"prettier": "npx prettier . --write"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^4.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"eslint": "^8.47.0",
"prettier": "3.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"dependencies": {
"@janvanbouwel/chunked-stream": "^0.2.2"
}
}