File: control

package info (click to toggle)
node-async 3.2.6%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,732 kB
  • sloc: javascript: 13,616; sh: 151; makefile: 126
file content (54 lines) | stat: -rw-r--r-- 2,039 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
Source: node-async
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Build-Depends: debhelper-compat (= 13)
 , dh-sequence-nodejs
 , node-babel-core
 , node-babel-minify
 , node-babel-plugin-add-module-exports
 , node-babel-plugin-transform-modules-commonjs
 , node-rollup-plugin-node-resolve
 , rollup
 , node-istanbul (>= 0.4.5+repack10+~cs98.25.59-3) <!nocheck>
 , mocha <!nocheck>
 , chai <!nocheck>
 , node-bluebird <!nocheck>
 , node-es6-promise <!nocheck>
 , node-native-promise-only <!nocheck>
 , node-rsvp <!nocheck>
 , node-lodash <!nocheck>
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/js-team/node-async
Vcs-Git: https://salsa.debian.org/js-team/node-async.git
Homepage: https://github.com/caolan/async
Testsuite: autopkgtest-pkg-nodejs
Rules-Requires-Root: no

Package: node-async
Architecture: all
Depends: ${misc:Depends}
Provides: node-async-es (= ${binary:Version})
Conflicts: libjs-async
Replaces: libjs-async
Multi-Arch: foreign
Description: functions and patterns for asynchronous code - Node.js
 Async is a utility module which provides straight-forward, powerful
 functions for working with asynchronous Javascript.
 .
 Async provides around 70 functions that include the usual 'functional'
 suspects (map, reduce, filter, each, ...) as well as some common
 patterns for asynchronous control flow (parallel, series, waterfall, ...).
 All these functions assume you follow the Node convention of providing
 a single callback as the last argument of your async function.
 .
 Although originally designed for use with Node.js, this package can
 also be used directly in the browser.  An ESM/MJS version is included
 in this package that should automatically be used with compatible
 bundlers such as Webpack and Rollup.
 .
 A pure ESM version of Async is also available as the async-es, included in
 this Debian package.
 .
 Node.js is an event-based server-side JavaScript engine.