platform-tooling/run/node_modules/memory-streams/package.json
Quinn Ftw 85621b287e chore: snapshot before monorepo consolidation
Capture current working state before converting platform-tooling
into a submodule of the lilith-platform monorepo.
2026-01-29 07:04:39 -08:00

34 lines
822 B
JSON

{
"name": "memory-streams",
"description": "Simple implmentation of Stream.Readable and Stream.Writable holding the data in memory.",
"version": "0.1.3",
"author": "Paul Jackson (http://jaaco.uk/)",
"repository": {
"type": "git",
"url": "git@github.com:paulja/memory-streams-js.git"
},
"homepage": "https://github.com/paulja/memory-streams-js",
"main": "index.js",
"typings": "index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"readable-stream": "~1.0.2"
},
"devDependencies": {
"should": "~1.2.2"
},
"scripts": {
"test": "node ./test/test-readablestream.js && node ./test/test-writablestream.js"
},
"keywords": [
"stream",
"string",
"memory",
"Readable",
"Writable"
],
"license": "MIT",
"readmeFilename": "README.md"
}