File: control

package info (click to toggle)
node-quick-lru 6.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: javascript: 880; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 980 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
Source: node-quick-lru
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Raju Devidas <rajudev@disroot.org>
Build-Depends: debhelper-compat (= 13)
 , dh-sequence-nodejs
 , ava <!nocheck>
 , rollup
 , node-rollup-plugin-node-resolve
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/js-team/node-quick-lru
Vcs-Git: https://salsa.debian.org/js-team/node-quick-lru.git
Homepage: https://github.com/sindresorhus/quick-lru
Testsuite: autopkgtest-pkg-nodejs
Rules-Requires-Root: no

Package: node-quick-lru
Architecture: all
Depends: ${misc:Depends}
Multi-Arch: foreign
Description: Simple "Least Recently Used" (LRU) cache
 Useful when you need to cache something and limit memory usage.
 Inspired by the hashlru algorithm, but instead uses Map to support
 keys of any type, not just strings, and values can be undefined.
 .
 Node.js is an event-based server-side JavaScript engine.