Skip to content

Commit

Permalink
Introduce Natural Language API (#1440)
Browse files Browse the repository at this point in the history
* language: implement API
  • Loading branch information
stephenplusplus authored and sofisl committed Oct 13, 2022
1 parent 3acf0b2 commit cccb21e
Show file tree
Hide file tree
Showing 6 changed files with 2,865 additions and 0 deletions.
77 changes: 77 additions & 0 deletions packages/google-cloud-language/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"name": "@google-cloud/language",
"version": "0.1.0",
"author": "Google Inc.",
"description": "Google Cloud Natural Language Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "jbd@google.com"
},
{
"name": "Johan Euphrosine",
"email": "proppy@google.com"
},
{
"name": "Patrick Costello",
"email": "pcostell@google.com"
},
{
"name": "Ryan Seys",
"email": "ryan@ryanseys.com"
},
{
"name": "Silvano Luciani",
"email": "silvano@google.com"
},
{
"name": "Stephen Sawchuk",
"email": "sawchuk@gmail.com"
}
],
"main": "./src/index.js",
"files": [
"./src/*",
"AUTHORS",
"CONTRIBUTORS",
"COPYING"
],
"repository": "googlecloudplatform/gcloud-node",
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google cloud natural language",
"google cloud language",
"natural language",
"language"
],
"dependencies": {
"@google-cloud/common": "^0.1.0",
"@google-cloud/storage": "^0.1.0",
"arrify": "^1.0.1",
"extend": "^3.0.0",
"google-proto-files": "^0.4.0",
"is": "^3.0.1",
"propprop": "^0.3.1",
"string-format-obj": "^1.0.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"proxyquire": "^1.7.10"
},
"scripts": {
"publish": "../../scripts/publish.sh",
"test": "mocha test/*.js",
"system-test": "mocha system-test/*.js --no-timeouts --bail"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.12.0"
}
}
Loading

0 comments on commit cccb21e

Please sign in to comment.