Update app and tooling

This commit is contained in:
Lawrence Chen 2026-01-29 17:36:26 -08:00
parent 3046531bdd
commit e620ec7349
4950 changed files with 2975120 additions and 10 deletions

36
node_modules/stream-to-array/package.json generated vendored Normal file
View file

@ -0,0 +1,36 @@
{
"name": "stream-to-array",
"description": "Concatenate a readable stream's data into a single array",
"version": "2.3.0",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "stream-utils/stream-to-array",
"dependencies": {
"any-promise": "^1.1.0"
},
"devDependencies": {
"bluebird": "^3.1.1",
"istanbul": "^0.4.2",
"mocha": "^2.3.3"
},
"scripts": {
"test": "mocha --reporter spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"files": [
"index.js"
],
"keywords": [
"stream",
"streams",
"buffer",
"array",
"concat"
]
}