node-keypress 0.2.1-2 source package in Ubuntu

Changelog

node-keypress (0.2.1-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Use secure copyright file specification URI.
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Change priority extra to priority optional.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update Vcs-* headers to use salsa repository.
  * Remove unnecessary get-orig-source-target.
  * Apply multi-arch hints.
    + node-keypress: Add Multi-Arch: foreign.
  * Remove constraints unnecessary since buster:
    + node-keypress: Drop versioned constraint on nodejs in Depends.
  * Bump debhelper from old 12 to 13.

  [ Yadd ]
  * Declare compliance with policy 4.6.0
  * Add "Rules-Requires-Root: no"
  * Change section to javascript
  * Add debian/gbp.conf
  * Modernize debian/watch
    * Fix filenamemangle
    * Fix GitHub tags regex
  * Drop nodejs dependency
  * Use dh-sequence-nodejs auto install

 -- Yadd <email address hidden>  Fri, 12 Nov 2021 20:16:35 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-keypress_0.2.1-2.dsc 2.0 KiB 1acc732d0aecdf0110c2f9a85bb4db350f9ce562b9e2ba618c43190699d65dfb
node-keypress_0.2.1.orig.tar.gz 5.1 KiB 263024f4ac5bee156d70908688966e429a4f43b0ad0220d178889979be355fbd
node-keypress_0.2.1-2.debian.tar.xz 3.0 KiB 4376646c87ed2ec9a4b4a3a80101d90522e612355ffdd48e28abe35dc2183f58

Available diffs

No changes file available.

Binary packages built by this source

node-keypress: Make any Node ReadableStream emit "keypress" events

 Previous to Node v0.8.x, there was an undocumented "keypress" event that
 process.stdin would emit when it was a TTY. Some people discovered this
 hidden gem, and started using it in their own code.
 .
 In Node v0.8.x (and above), this "keypress" event does not get emitted by
 default, but rather only when it is being used in conjunction with the
 readline (or by extension, the repl) module.
 .
 This module is the exact logic from the node pre-v0.8.x releases ripped out
 into its own module.
 .
 Bonus: Now with mouse support!