File: control

package info (click to toggle)
node-winston 3.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,456 kB
  • sloc: javascript: 5,718; makefile: 2
file content (61 lines) | stat: -rw-r--r-- 2,179 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
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
Source: node-winston
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Roland Mas <lolando@debian.org>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
 debhelper-compat (= 13)
 , dh-sequence-nodejs
 , mocha <!nocheck>
 , node-assume <!nocheck>
 , node-colors <!nocheck>
 , node-dabh-diagnostics <!nocheck>
 , node-deep-equal <!nocheck>
 , node-is-stream (>= 2.0.0) <!nocheck>
 , node-logform <!nocheck>
 , node-neo-async <!nocheck>
 , node-one-time <!nocheck>
 , node-readable-stream (>= 3.4.0) <!nocheck>
 , node-rimraf <!nocheck>
 , node-split2 <!nocheck>
 , node-stack-trace <!nocheck>
 , node-std-mocks <!nocheck>
 , node-through2 <!nocheck>
 , node-triple-beam <!nocheck>
 , node-winston-compat <!nocheck>
 , node-winston-transport <!nocheck>
Standards-Version: 4.6.1
Homepage: https://github.com/winstonjs/winston#readme
Vcs-Git: https://salsa.debian.org/js-team/node-winston.git
Vcs-Browser: https://salsa.debian.org/js-team/node-winston
Rules-Requires-Root: no

Package: node-winston
Architecture: all
Depends:
 node-dabh-diagnostics
 , node-is-stream (>= 2.0.0)
 , node-logform
 , node-neo-async
 , node-one-time
 , node-readable-stream (>= 3.4.0)
 , node-stack-trace
 , node-std-mocks
 , node-triple-beam
 , node-winston-compat
 , node-winston-transport
 , ${misc:Depends}
Description: Logger for just about everything (for Nodejs)
 Winston is designed to be a simple and universal logging library with
 support for multiple transports. A transport is essentially a storage
 device for your logs. Each Winston logger can have multiple
 transports configured at different levels. For example, one may want
 error logs to be stored in a persistent remote location (like a
 database), but all logs output to the console or a local file.
 .
 Winston aims to decouple parts of the logging process to make it more
 flexible and extensible. Attention is given to supporting flexibility
 in log formatting & levels, and ensuring those APIs decoupled from
 the implementation of transport logging (i.e. how the logs are stored
 or indexed) to the API that they exposed to the programmer.