├── .gitignore ├── README.md ├── bin └── mbsync-watcher ├── lib └── mbsync-watcher.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/node-mbsync-watcher/HEAD/README.md -------------------------------------------------------------------------------- /bin/mbsync-watcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/node-mbsync-watcher/HEAD/bin/mbsync-watcher -------------------------------------------------------------------------------- /lib/mbsync-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/node-mbsync-watcher/HEAD/lib/mbsync-watcher.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/node-mbsync-watcher/HEAD/package.json --------------------------------------------------------------------------------