File: control

package info (click to toggle)
node-pump 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 132 kB
  • sloc: javascript: 291; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,036 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
Source: node-pump
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends: debhelper-compat (= 12)
 , node-end-of-stream <!nocheck>
 , node-once (>= 1.3.1) <!nocheck>
 , pkg-js-tools (>= 0.9.20~)
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/js-team/node-pump
Vcs-Git: https://salsa.debian.org/js-team/node-pump.git
Homepage: https://github.com/mafintosh/pump
Rules-Requires-Root: no

Package: node-pump
Architecture: all
Depends: ${misc:Depends}
 , node-end-of-stream
 , node-once (>= 1.3.1)
 , nodejs
Description: small node module that pipes streams together
 When using standard source.pipe(dest) source will not be destroyed if dest
 emits close or an error. You are also not able to provide a callback to tell
 when then pipe has finished. pump does these two things for you.
 .
 Node.js is an event-based server-side JavaScript engine.