UNPKG

sponge

Version:

Reimplementation of sponge from moreutils

51 lines (50 loc) 1.02 kB
{ "name": "sponge", "version": "0.1.0", "description": "Reimplementation of sponge from moreutils", "author": "Eugene Sharygin <eush77@gmail.com>", "license": "MIT", "bin": { "sponge": "cli.js" }, "files": [ "cli.js", "index.js" ], "scripts": { "test": "npm run apitest && npm run clitest", "apitest": "tape test/api/*.js", "clitest": "PATH=\"$PWD:$PATH\" urchin -f test/cli" }, "homepage": "https://github.com/eush77/node-sponge", "repository": { "type": "git", "url": "https://github.com/eush77/node-sponge" }, "bugs": { "url": "https://github.com/eush77/node-sponge/issues" }, "keywords": [ "sponge", "moreutils", "node", "stream", "stdin", "stdout", "file", "accumulate", "read", "write", "buffer" ], "dependencies": { "concat-stream": "^1.4.7", "duplexer2": "0.0.2", "through2": "^0.6.3" }, "devDependencies": { "rewire": "^2.3.1", "tape": "^3.5.0", "urchin": "0.0.5" } }