-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.41 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
58
59
60
61
{
"name": "super-loop",
"version": "0.3.1",
"description": "Producer-consumer implementation based on nodejs stream",
"main": "index.js",
"keywords": [
"producer",
"consumer",
"nodejs",
"stream",
"loop",
"backpressure",
"concurrency"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simple-dev-tools/super-loop.git"
},
"homepage": "https://github.com/simple-dev-tools/super-loop#readme",
"scripts": {
"test": "./node_modules/jest/bin/jest.js --coverage --collectCoverageFrom=src/**/*.js --detectOpenHandles --forceExit",
"lint": "eslint .",
"example1": "node -r dotenv/config examples/produce-consumer.js"
},
"author": "Matt Shen",
"license": "MIT",
"dependencies": {
"rate-limiter-flexible": "^2.3.6",
"through2-concurrent": "2.0.0"
},
"devDependencies": {
"csv-parser": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"measured-core": "^2.0.0"
},
"jest": {
"testRegex": "./__tests__/.*\\.(test|spec)\\.js$",
"testEnvironment": "node",
"globals": {
"request": {}
},
"verbose": true,
"moduleDirectories": [
"node_modules",
"lib"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"collectCoverageFrom": [
"src/**/*.js"
]
}
}