├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── jest.config.js ├── package.json └── tests ├── authentication.test.js ├── check.js ├── environment.test.js ├── location.test.js ├── mocks └── authentication.js └── request-timing.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/package.json -------------------------------------------------------------------------------- /tests/authentication.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/authentication.test.js -------------------------------------------------------------------------------- /tests/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/check.js -------------------------------------------------------------------------------- /tests/environment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/environment.test.js -------------------------------------------------------------------------------- /tests/location.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/location.test.js -------------------------------------------------------------------------------- /tests/mocks/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/mocks/authentication.js -------------------------------------------------------------------------------- /tests/request-timing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelek/node-google-shared-locations/HEAD/tests/request-timing.test.js --------------------------------------------------------------------------------