CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json38 linesDownload Raw Back to bl
1{2  "name": "bl",3  "version": "4.1.0",4  "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!",5  "license": "MIT",6  "main": "bl.js",7  "scripts": {8    "lint": "standard *.js test/*.js",9    "test": "npm run lint && node test/test.js | faucet"10  },11  "repository": {12    "type": "git",13    "url": "https://github.com/rvagg/bl.git"14  },15  "homepage": "https://github.com/rvagg/bl",16  "authors": [17    "Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",18    "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",19    "Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)"20  ],21  "keywords": [22    "buffer",23    "buffers",24    "stream",25    "awesomesauce"26  ],27  "dependencies": {28    "buffer": "^5.5.0",29    "inherits": "^2.0.4",30    "readable-stream": "^3.4.0"31  },32  "devDependencies": {33    "faucet": "~0.0.1",34    "standard": "^14.3.0",35    "tape": "^4.11.0"36  }37}38