├── .env.example ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── gsheets ├── package.json ├── scripts └── publish └── src ├── __snapshots__ └── index.test.js.snap ├── index.js └── index.test.js /.env.example: -------------------------------------------------------------------------------- 1 | GSHEETS_API_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /gsheets*.js 4 | *.log 5 | .env -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/README.md -------------------------------------------------------------------------------- /bin/gsheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/bin/gsheets -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/package.json -------------------------------------------------------------------------------- /scripts/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/scripts/publish -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interactivethings/gsheets/HEAD/src/index.test.js --------------------------------------------------------------------------------