├── .editorconfig ├── .gitignore ├── cli.js ├── demo.json ├── demo.svg ├── license.md ├── package.json └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/cli.js -------------------------------------------------------------------------------- /demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/demo.json -------------------------------------------------------------------------------- /demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/demo.svg -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionebl/remote-share-cli/HEAD/readme.md --------------------------------------------------------------------------------