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

Changelog

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

  * Team upload
  * Add debian/clean
  * Replace old-style mocha test files (Closes: #952191)

 -- Xavier Guimard <email address hidden>  Mon, 24 Feb 2020 09:31:46 +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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-levn_0.3.0+dfsg-4.dsc 2.0 KiB b8f4212fc7dbe69c32564fbce08c19666b5fd3da5e2ada355877e449e2306620
node-levn_0.3.0+dfsg.orig.tar.gz 9.9 KiB bd343285a864e27f914226a29f4ee65082e5063768ffd601067531d5d1b6c0a0
node-levn_0.3.0+dfsg-4.debian.tar.xz 6.6 KiB 60f4d8051a335b716fa23da30fe49bf24c41912aa854b5c0753f089735c3cbc5

Available diffs

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.