├── .gitignore ├── LICENSE.md ├── README.md ├── estimote-nearable.js ├── estimote-telemetry.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Estimote/estimote-specs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Estimote/estimote-specs/HEAD/README.md -------------------------------------------------------------------------------- /estimote-nearable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Estimote/estimote-specs/HEAD/estimote-nearable.js -------------------------------------------------------------------------------- /estimote-telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Estimote/estimote-specs/HEAD/estimote-telemetry.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Estimote/estimote-specs/HEAD/package.json --------------------------------------------------------------------------------