Skip to content

Commit 12a7489

Browse files
fix: bump min version of dependencies (#589)
1 parent be690fd commit 12a7489

File tree

6 files changed

+17
-29
lines changed

6 files changed

+17
-29
lines changed

packages/google-cloud-dialogflow/.mocharc.json

-5
This file was deleted.

packages/google-cloud-dialogflow/package.json

+14-15
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,26 @@
4343
},
4444
"dependencies": {
4545
"google-gax": "^2.1.0",
46-
"protobufjs": "^6.8.0"
46+
"protobufjs": "^6.8.9"
4747
},
4848
"devDependencies": {
49-
"@types/mocha": "^5.2.5",
50-
"@types/node": "^12.0.0",
49+
"@types/mocha": "^7.0.2",
50+
"@types/node": "^13.11.1",
5151
"@types/sinon": "^9.0.0",
52-
"c8": "^7.0.0",
53-
"codecov": "^3.0.0",
52+
"c8": "^7.1.0",
53+
"codecov": "^3.6.5",
5454
"gts": "^2.0.0",
55-
"jsdoc": "^3.6.3",
56-
"jsdoc-fresh": "^1.0.1",
57-
"jsdoc-region-tag": "^1.0.2",
58-
"linkinator": "^2.0.3",
59-
"mocha": "^6.1.4",
55+
"jsdoc": "^3.6.4",
56+
"jsdoc-fresh": "^1.0.2",
57+
"jsdoc-region-tag": "^1.0.4",
58+
"linkinator": "^2.0.6",
59+
"mocha": "^7.1.1",
6060
"null-loader": "^3.0.0",
6161
"pack-n-play": "^1.0.0-2",
62-
"prettier": "^1.11.1",
63-
"sinon": "^9.0.1",
64-
"ts-loader": "^6.2.1",
62+
"sinon": "^9.0.2",
63+
"ts-loader": "^6.2.2",
6564
"typescript": "^3.8.3",
66-
"webpack": "^4.41.2",
67-
"webpack-cli": "^3.3.10"
65+
"webpack": "^4.42.1",
66+
"webpack-cli": "^3.3.11"
6867
}
6968
}

packages/google-cloud-dialogflow/system-test/.eslintrc.yml

-3
This file was deleted.

packages/google-cloud-dialogflow/system-test/install.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {readFileSync} from 'fs';
2121
import {describe, it} from 'mocha';
2222

2323
describe('typescript consumer tests', () => {
24-
it('should have correct type signature for typescript users', async function() {
24+
it('should have correct type signature for typescript users', async function () {
2525
this.timeout(300000);
2626
const options = {
2727
packageDir: process.cwd(), // path to your module.
@@ -35,7 +35,7 @@ describe('typescript consumer tests', () => {
3535
await packNTest(options); // will throw upon error.
3636
});
3737

38-
it('should have correct type signature for javascript users', async function() {
38+
it('should have correct type signature for javascript users', async function () {
3939
this.timeout(300000);
4040
const options = {
4141
packageDir: process.cwd(), // path to your module.

packages/google-cloud-dialogflow/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"outDir": "build",
66
"resolveJsonModule": true,
77
"lib": [
8-
"es2016",
8+
"es2018",
99
"dom"
1010
]
1111
},

packages/google-cloud-dialogflow/tslint.json

-3
This file was deleted.

0 commit comments

Comments
 (0)