Skip to content

Commit

Permalink
Update dependencies (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-sebastian committed Jan 23, 2018
1 parent 6ac1947 commit 5be8477
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion conformance/runner.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const path = require('path');
const is = require('is');
const through = require('through2');
Expand Down
36 changes: 18 additions & 18 deletions package.json
Expand Up @@ -50,36 +50,36 @@
"test": "repo-tools test run --cmd npm -- run cover"
},
"dependencies": {
"@google-cloud/common": "^0.15.0",
"@google-cloud/common-grpc": "^0.5.0",
"@google-cloud/common": "^0.15.1",
"@google-cloud/common-grpc": "^0.5.3",
"bun": "^0.0.12",
"extend": "^3.0.1",
"functional-red-black-tree": "^1.0.1",
"google-gax": "^0.14.1",
"grpc": "~1.8.4",
"is": "^3.2.0",
"google-gax": "^0.14.3",
"is": "^3.2.1",
"safe-buffer": "^5.1.1",
"through2": "^2.0.3"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.1.0",
"@types/mocha": "^2.2.43",
"@google-cloud/nodejs-repo-tools": "^2.1.4",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"duplexify": "^3.5.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"duplexify": "^3.5.3",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.5.0",
"google-proto-files": "^0.14.1",
"grpc": "^1.8.4",
"ink-docstrap": "git+https://github.com/docstrap/docstrap.git",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"power-assert": "^1.4.4",
"prettier": "^1.9.2",
"protobufjs": "^6.8.0",
"proxyquire": "^1.7.11",
"typescript": "^2.5.2"
"prettier": "^1.10.2",
"protobufjs": "^6.8.4",
"proxyquire": "^1.8.0",
"typescript": "^2.6.2"
}
}
2 changes: 1 addition & 1 deletion system-test/firestore.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

let assert = require('assert');
let assert = require('power-assert');
let Buffer = require('safe-buffer').Buffer;
let is = require('is');

Expand Down
2 changes: 1 addition & 1 deletion test/backoff.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');

const Firestore = require('../src');
const backoff = require('../src/backoff')(Firestore);
Expand Down
2 changes: 1 addition & 1 deletion test/collection.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const grpc = require('grpc');
const is = require('is');

Expand Down
2 changes: 1 addition & 1 deletion test/document.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const Buffer = require('safe-buffer').Buffer;
const extend = require('extend');
const grpc = require('grpc');
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const duplexify = require('duplexify');
const extend = require('extend');
const grpc = require('grpc');
Expand Down
2 changes: 1 addition & 1 deletion test/order.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const Buffer = require('safe-buffer').Buffer;
const grpc = require('grpc');

Expand Down
2 changes: 1 addition & 1 deletion test/path.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');

const path = require('../src/path');
const ResourcePath = path.ResourcePath;
Expand Down
2 changes: 1 addition & 1 deletion test/query.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const extend = require('extend');
const grpc = require('grpc');
const is = require('is');
Expand Down
2 changes: 1 addition & 1 deletion test/transaction.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const grpc = require('grpc');
const through = require('through2');

Expand Down
2 changes: 1 addition & 1 deletion test/watch.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const duplexify = require('duplexify');
const grpc = require('grpc');
const is = require('is');
Expand Down
2 changes: 1 addition & 1 deletion test/write-batch.js
Expand Up @@ -16,7 +16,7 @@

'use strict';

const assert = require('assert');
const assert = require('power-assert');
const grpc = require('grpc');

const Firestore = require('../');
Expand Down

0 comments on commit 5be8477

Please sign in to comment.