From 320eb7209172cdff7c7fea465f8090bb41471118 Mon Sep 17 00:00:00 2001 From: Justin Beckwith Date: Fri, 7 Sep 2018 13:56:05 -0700 Subject: [PATCH] Update all dependencies (#45) --- packages/google-cloud-redis/package.json | 28 +++++++++---------- .../google-cloud-redis/samples/package.json | 19 +++++++++++++ .../google-cloud-redis/samples/quickstart.js | 15 ++++++++++ .../samples/system-test/redis.js | 15 ++++++++++ 4 files changed, 63 insertions(+), 14 deletions(-) create mode 100644 packages/google-cloud-redis/samples/package.json create mode 100644 packages/google-cloud-redis/samples/system-test/redis.js diff --git a/packages/google-cloud-redis/package.json b/packages/google-cloud-redis/package.json index e576cc0c11f..a6ed6822507 100644 --- a/packages/google-cloud-redis/package.json +++ b/packages/google-cloud-redis/package.json @@ -45,25 +45,25 @@ }, "dependencies": { "google-gax": "^0.19.0", - "lodash.merge": "^4.6.0", - "protobufjs": "^6.8.0" + "lodash.merge": "^4.6.1", + "protobufjs": "^6.8.8" }, "devDependencies": { - "@google-cloud/nodejs-repo-tools": "^2.3.0", - "async": "^2.6.0", - "codecov": "^3.0.1", - "eslint": "^5.0.0", - "eslint-config-prettier": "^3.0.0", - "eslint-plugin-node": "^7.0.0", - "eslint-plugin-prettier": "^2.6.0", - "extend": "^3.0.1", + "@google-cloud/nodejs-repo-tools": "^2.3.3", + "async": "^2.6.1", + "codecov": "^3.1.0", + "eslint": "^5.5.0", + "eslint-config-prettier": "^3.0.1", + "eslint-plugin-node": "^7.0.1", + "eslint-plugin-prettier": "^2.6.2", + "extend": "^3.0.2", "ink-docstrap": "^1.3.2", "intelli-espower-loader": "^1.0.1", "jsdoc": "^3.5.5", - "mocha": "^5.1.1", - "nyc": "^13.0.0", - "power-assert": "^1.5.0", - "prettier": "^1.12.1", + "mocha": "^5.2.0", + "nyc": "^13.0.1", + "power-assert": "^1.6.0", + "prettier": "^1.14.2", "through2": "^2.0.3" } } diff --git a/packages/google-cloud-redis/samples/package.json b/packages/google-cloud-redis/samples/package.json new file mode 100644 index 00000000000..11f96c2411a --- /dev/null +++ b/packages/google-cloud-redis/samples/package.json @@ -0,0 +1,19 @@ +{ + "description": "Samples for the @google-cloud/redis npm module.", + "license": "Apache-2.0", + "author": "Google LLC", + "engines": { + "node": ">=8" + }, + "repository": "googleapis/nodejs-redis", + "private": true, + "scripts": { + "test": "mocha system-test" + }, + "dependencies": { + "@google-cloud/redis": "*" + }, + "devDependencies": { + "mocha": "^5.2.0" + } +} diff --git a/packages/google-cloud-redis/samples/quickstart.js b/packages/google-cloud-redis/samples/quickstart.js index e69de29bb2d..1e85b5d24cb 100644 --- a/packages/google-cloud-redis/samples/quickstart.js +++ b/packages/google-cloud-redis/samples/quickstart.js @@ -0,0 +1,15 @@ +// Copyright 2018 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +console.warn('no samples available 😐'); diff --git a/packages/google-cloud-redis/samples/system-test/redis.js b/packages/google-cloud-redis/samples/system-test/redis.js new file mode 100644 index 00000000000..6c1b35edaeb --- /dev/null +++ b/packages/google-cloud-redis/samples/system-test/redis.js @@ -0,0 +1,15 @@ +// Copyright 2018 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +console.warn('no system tests available 😐');