This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: modernize the samples and sample tests (#297)
- Loading branch information
1 parent
2854b03
commit 09a0c70
Showing
26 changed files
with
678 additions
and
907 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
{ | ||
"name": "nodejs-docs-samples-vision", | ||
"version": "0.0.1", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"author": "Google Inc.", | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"files": [ | ||
"*.js" | ||
], | ||
"scripts": { | ||
"test": "mocha system-test/*.test.js --timeout 600000" | ||
"test": "mocha system-test --timeout 600000" | ||
}, | ||
"dependencies": { | ||
"@google-cloud/automl": "^0.1.1", | ||
"@google-cloud/automl": "^0.1.3", | ||
"@google-cloud/vision": "^0.23.0", | ||
"async": "^2.6.1", | ||
"mathjs": "^5.0.4", | ||
"natural": "^0.6.1", | ||
"redis": "^2.8.0", | ||
"yargs": "^12.0.0", | ||
"canvas": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@google-cloud/nodejs-repo-tools": "^3.0.0", | ||
"@google-cloud/storage": "^2.0.0", | ||
"chai": "^4.2.0", | ||
"execa": "^1.0.0", | ||
"mocha": "^5.0.0", | ||
"uuid": "^3.2.1" | ||
}, | ||
"optionalDependencies": {} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
--- | ||
env: | ||
mocha: true | ||
rules: | ||
node/no-unpublished-require: off | ||
no-empty: off |
Oops, something went wrong.