├── .codeclimate.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── UNLICENSE ├── examples └── unauthenticated.js ├── lib └── spreadsheets.js ├── package.json └── test └── test.js /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | exclude_paths: 2 | - examples/* -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | lib/spreadsheets.browser.* 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 9.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/UNLICENSE -------------------------------------------------------------------------------- /examples/unauthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/examples/unauthenticated.js -------------------------------------------------------------------------------- /lib/spreadsheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/lib/spreadsheets.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samcday/node-google-spreadsheets/HEAD/test/test.js --------------------------------------------------------------------------------