├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── collaborators.md ├── index.js ├── package.json └── test ├── fixtures └── spawn.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/README.md -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/collaborators.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/test/fixtures/spawn.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/transport-stream/HEAD/test/index.js --------------------------------------------------------------------------------