ibm-watson
Version:
Client library to use the IBM Watson Services
93 lines • 2.84 kB
JSON
{
"name": "ibm-watson",
"version": "10.0.0",
"description": "Client library to use the IBM Watson Services",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/node-sdk.git"
},
"keywords": [
"assistant",
"discovery",
"ibm",
"natural language understanding",
"speech to text",
"text to speech",
"watson developer cloud",
"watson",
"wdc"
],
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
},
{
"name": "Nathan Friedly",
"email": "nfriedly@us.ibm.com"
},
{
"name": "Jeff Stylos",
"email": "jsstylos@us.ibm.com"
},
{
"name": "Dustin Popp",
"email": "dustinpopp@ibm.com"
},
{
"name": "Angelo Paparazzi",
"email": "angelo.paparazzi@ibm.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/node-sdk/issues"
},
"dependencies": {
"@types/async": "^3.2.5",
"@types/extend": "^3.0.1",
"@types/isstream": "^0.1.0",
"@types/node": "^13.13.39",
"@types/websocket": "^1.0.1",
"async": "^3.2.0",
"camelcase": "^6.2.0",
"extend": "~3.0.2",
"ibm-cloud-sdk-core": "^5.1.0",
"isstream": "~0.1.2",
"websocket": "^1.0.33"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"tslint:config": "tslint-config-prettier-check ./tslint.json",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"tslint:check": "tslint -p . -c ./tslint.json",
"eslint:config": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check && npm run tslint:check",
"build": "tsc && cp package.json dist/",
"doc": "jsdoc -c scripts/jsdoc/config.json",
"tsc-publish-dry": "tsc-publish --no-checks --dry-run",
"postversion": "npm run tsc-publish-dry",
"test-integration": "jest test/integration",
"test-unit": "jest test/unit/",
"test": "jest test/",
"test-unit-travis": "jest --silent --runInBand test/unit/",
"test-integration-travis": "jest --silent --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"report-coverage": "codecov",
"watch-doc": "nodemon --watch ./ --ext js,tmpl,json --ignore dist/ --ignore doc/ --ignore test/ --ignore examples/ --exec npm run doc",
"watch": "npm run test-unit -- --watch",
"check-packages": "installed-check -e -d",
"snyk-protect": "snyk protect",
"prettier": "prettier --write \"{src,test}/**/*.js\""
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
},
"snyk": true
}