UNPKG

1.11 kBJSONView Raw
1{
2 "name": "ordered-read-streams",
3 "version": "2.0.0",
4 "description": "Combines array of streams into one Readable stream in strict order.",
5 "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
6 "contributors": [
7 "Blaine Bublitz <blaine.bublitz@gmail.com>",
8 "Artem Medeu <artem.medeusheyev@gmail.com>"
9 ],
10 "repository": "gulpjs/ordered-read-streams",
11 "license": "MIT",
12 "engines": {
13 "node": ">= 10.13.0"
14 },
15 "files": [
16 "LICENSE",
17 "index.js"
18 ],
19 "scripts": {
20 "lint": "eslint .",
21 "pretest": "npm run lint",
22 "test": "nyc mocha --async-only"
23 },
24 "dependencies": {
25 "streamx": "^2.12.5"
26 },
27 "devDependencies": {
28 "eslint": "^7.32.0",
29 "eslint-config-gulp": "^5.0.1",
30 "eslint-plugin-node": "^11.1.0",
31 "expect": "^27.4.2",
32 "mocha": "^8.4.0",
33 "nyc": "^15.1.0",
34 "readable-stream": "^3.6.0"
35 },
36 "nyc": {
37 "reporter": [
38 "lcov",
39 "text-summary"
40 ]
41 },
42 "prettier": {
43 "singleQuote": true
44 },
45 "keywords": [
46 "streams",
47 "ordered",
48 "group",
49 "combine",
50 "streamx",
51 "readable"
52 ]
53}