node-levn 0.3.0+dfsg-2 source package in Ubuntu

Changelog

node-levn (0.3.0+dfsg-2) unstable; urgency=medium

  * Drop compat file, rely on debhelper-compat and bump compat level to 12
  * Bump Standards-Version to 4.4.1 (no changes needed)
  * Use salsa.debian.org in Vcs-* fields
  * Switch to pkg-js-tools (fix autopkgtest failure)
  * Fix long description (Closes: #840722)
  * Add Tessuite field
  * Change section: web -> javascript
  * Add description to patch
  * Switch back to manual autopkgtest
  * Override missing pkg-js/test file

 -- Pirate Praveen <email address hidden>  Sun, 19 Jan 2020 15:13:40 +0530

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

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-levn_0.3.0+dfsg-2.dsc 2.0 KiB 5008ee8a702ad0c3d7f02077a80cc16fad2a53072ec585d644b8021b8f723e51
node-levn_0.3.0+dfsg.orig.tar.gz 9.9 KiB bd343285a864e27f914226a29f4ee65082e5063768ffd601067531d5d1b6c0a0
node-levn_0.3.0+dfsg-2.debian.tar.xz 2.9 KiB 6d6ff9c948a4cef22e755776e395f0cb69a2f0b02332d4e0fbf6ae8d068a6bd6

No changes file available.

Binary packages built by this source

node-levn: Light ECMAScript (JavaScript) Value Notation

 Levn is a library which allows you to parse a string into a JavaScript value
 based on an expected type. It is meant for short amounts of human entered data
 (eg. config files, command line arguments).
 .
 Levn aims to concisely describe JavaScript values in text, and allow for the
 extraction and validation of those values. Levn uses 'type-check' for its type
 format, and to validate the results.
 .
 How is this different than JSON? levn is meant to be written by humans only,
 is (due to the previous point) much more concise, can be validated against
 supplied types, has regex and date literals, and can easily be extended with
 custom types. On the other hand, it is probably slower and thus less efficient
 at transporting large amounts of data, which is fine since this is not its
 purpose.
 .
 Node.js is an event-based server-side JavaScript engine.