File: control

package info (click to toggle)
node-depd 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 224 kB
  • sloc: makefile: 4
file content (39 lines) | stat: -rw-r--r-- 1,432 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
Source: node-depd
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Andrew Kelley <superjoe30@gmail.com>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
 debhelper-compat (= 12)
 , mocha (>= 4) <!nocheck>
 , node-should <!nocheck>
 , nodejs
 , node-safe-buffer
 , node-uid-safe
 , pkg-js-tools (>= 0.9.20~)
Standards-Version: 4.5.0
Homepage: https://github.com/dougwilson/nodejs-depd
Vcs-Git: https://salsa.debian.org/js-team/node-depd.git
Vcs-Browser: https://salsa.debian.org/js-team/node-depd
Rules-Requires-Root: no

Package: node-depd
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs
Description: mark a function or property as deprecated - Node.js module
 This module goes above and beyond with deprecation warnings by introspecting
 the call stack (but only the bits that it is interested in).
 .
 Instead of just warning on the first invocation of a deprecated function and
 never again, this module will warn on the first invocation of a deprecated
 function per unique call site, making it ideal to alert users of all
 deprecated uses across the code base, rather than just whatever happens to
 execute first.
 .
 The deprecation warnings from this module also include the file and line
 information for the call into the module that the deprecated function was in.
 .
 Node.js is an event-based server-side JavaScript engine.