├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples └── simple.js ├── package.json ├── rsync.js └── tests ├── accessors.test.js ├── filters.test.js ├── helpers └── output.js ├── input.test.js ├── inputwin32.test.js ├── options.test.js ├── shorthands.test.js └── z_output.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/examples/simple.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/package.json -------------------------------------------------------------------------------- /rsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/rsync.js -------------------------------------------------------------------------------- /tests/accessors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/accessors.test.js -------------------------------------------------------------------------------- /tests/filters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/filters.test.js -------------------------------------------------------------------------------- /tests/helpers/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/helpers/output.js -------------------------------------------------------------------------------- /tests/input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/input.test.js -------------------------------------------------------------------------------- /tests/inputwin32.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/inputwin32.test.js -------------------------------------------------------------------------------- /tests/options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/options.test.js -------------------------------------------------------------------------------- /tests/shorthands.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/shorthands.test.js -------------------------------------------------------------------------------- /tests/z_output.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattijs/node-rsync/HEAD/tests/z_output.test.js --------------------------------------------------------------------------------