Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.

Commit 22ecdc4

Browse files
authored
Merge pull request #10 from nikolauska/jwt-fix
Fix for JWT
2 parents e4be462 + 42aa1bd commit 22ecdc4

4 files changed

Lines changed: 98 additions & 93 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
node_js:
3-
- '0.12'
4-
- '0.10'
5-
- 'iojs'
3+
- '12'
4+
- '10'
5+
- '8'
66
script:
77
- npm test

lib/sheets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var request = require('request');
66

77

88
function authorize(options) {
9-
var authClient = new google.auth.JWT(
9+
var authClient = new google.Auth.JWT(
1010
options.email,
1111
null,
1212
options.key,

package-lock.json

Lines changed: 92 additions & 87 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"url": "https://github.com/SC5/google-sheets-api/issues"
2525
},
2626
"dependencies": {
27-
"googleapis": "^47.0.0",
28-
"lodash": "^4.17.15",
27+
"googleapis": "^59.0.0",
28+
"lodash": "^4.17.20",
2929
"polyfill-promise": "^4.0.0",
3030
"request": "^2.54.0"
3131
},

0 commit comments

Comments
 (0)