File: control

package info (click to toggle)
node-read-only-stream 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: makefile: 20; sh: 13
file content (36 lines) | stat: -rw-r--r-- 1,350 bytes parent folder | download
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
Source: node-read-only-stream
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Bastien Roucariès <rouca@debian.org>
Build-Depends:
 debhelper-compat (= 12)
 , dh-buildinfo
 , nodejs (>= 10)
 , dpkg-dev (>= 1.17.14)
 , node-through2 (>= 2.0.0)  <!nocheck>
 , node-through (>= 2.3.4) <!nocheck>
 , node-concat-stream (>= 1.6.0) <!nocheck>
 , node-tape (>=4.2.0) <!nocheck>
 , node-tap (>= 10) <!nocheck>
 , node-readable-stream (>=2.0.2) <!nocheck>
Standards-Version: 4.4.0
Homepage: https://github.com/substack/read-only-stream
Vcs-Git: https://salsa.debian.org/js-team/node-read-only-stream.git
Vcs-Browser: https://salsa.debian.org/js-team/node-read-only-stream

Package: node-read-only-stream
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs (>= 10)
 , node-readable-stream (>=2.0.2)
Description: Node.js read-only stream implementation
 This module allow one to use a readable/writable stream internally but to
 expose just the readable part of that internal stream.
 .
 A stream is an abstract interface for working with streaming data in Node.js.
 There are many stream objects provided by Node.js. For instance, a request to
 an HTTP server and process.stdout are both stream instances.
 .
 Node.js is an event-based server-side JavaScript engine.