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
|
Source: node-safe-buffer
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Shirish Togarla <shirishtogarla533@gmail.com>
Build-Depends: debhelper-compat (= 13)
, dh-sequence-nodejs
, node-tap (>= 10) <!nocheck>
, node-tape <!nocheck>
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/js-team/node-safe-buffer
Vcs-Git: https://salsa.debian.org/js-team/node-safe-buffer.git
Homepage: https://github.com/feross/safe-buffer
Testsuite: autopkgtest-pkg-nodejs
Rules-Requires-Root: no
Package: node-safe-buffer
Architecture: all
Depends: ${misc:Depends}
, nodejs (>= 4.7)
Provides: ${nodejs:Provides}
Multi-Arch: foreign
Description: Safer Node.js Buffer API
The goal of this package is to provide a safe replacement for the node.js
`Buffer`. It's a drop-in replacement for `Buffer`. You can use it by adding
one `require` line to the top of your node.js modules; for example
var Buffer = require('safe-buffer').Buffer
Existing buffer code will continue to work without issues.
This package is a dependency for ava.
.
Node.js is an event-based server-side JavaScript engine.
|