├── .gitignore ├── .travis.yml ├── README.md ├── config.json ├── example ├── example-update.js └── example.js ├── lib ├── deviceEndpoints.js ├── discoveryService.js ├── index.js └── ip-helper.js ├── package.json └── test ├── deviceEndpoint_test.js ├── discoveryService_test.js └── index_test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/example/example-update.js -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/example/example.js -------------------------------------------------------------------------------- /lib/deviceEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/lib/deviceEndpoints.js -------------------------------------------------------------------------------- /lib/discoveryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/lib/discoveryService.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/ip-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/lib/ip-helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/package.json -------------------------------------------------------------------------------- /test/deviceEndpoint_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/test/deviceEndpoint_test.js -------------------------------------------------------------------------------- /test/discoveryService_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/test/discoveryService_test.js -------------------------------------------------------------------------------- /test/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsandor/fauxmojs/HEAD/test/index_test.js --------------------------------------------------------------------------------