-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 757 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 757 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
{
"name": "backpressure-demo",
"version": "1.0.0",
"description": "Demonstracja problemu backpressure w Node.js i jego rozwiązania",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:problem": "node app.js --solution=problem",
"start:pipeline": "node app.js --solution=pipeline",
"start:pipe": "node app.js --solution=pipe",
"start:all": "node app.js --solution=all",
"start:slow": "node app.js --slow",
"generate-file": "node generate-file.js",
"test": "node app.js --solution=all"
},
"keywords": [
"backpressure",
"streams",
"nodejs",
"education",
"demo"
],
"author": "Maxsoft",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"progress": "^2.0.3"
}
}