UNPKG

watson-developer-cloud

Version:

Client library to use the IBM Watson Services and AlchemyAPI

122 lines (121 loc) 3.79 kB
{ "name": "watson-developer-cloud", "version": "2.22.1", "description": "Client library to use the IBM Watson Services and AlchemyAPI", "main": "./index", "repository": { "type": "git", "url": "https://github.com/watson-developer-cloud/node-sdk.git" }, "keywords": [ "ibm", "watson", "wdc", "watson developer cloud", "chatbot", "message resonance", "user modeling", "dialog", "personality insights", "machine translation", "concept expansion", "question and answer", "relationship extraction", "language identification", "language translation", "visual recognition ", "speech to text", "text to speech", "concept insights", "tradeoff analytics", "tone analyzer", "retrieve and rank", "natural language classifier", "dialog", "tone_analyzer", "alchemy", "alchemyapi", "alchemy vision", "alchemy language", "alchemy datanews", "conversation" ], "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" } ], "license": "Apache-2.0", "bugs": { "url": "https://github.com/watson-developer-cloud/node-sdk/issues" }, "devDependencies": { "browserify": "^14.0.0", "concat-stream": "^1.5.1", "dependency-lint": "^4.2.0", "eslint": "^3.14.1", "eslint-config-google": "^0.7.1", "eslint-config-prettier": "git+https://github.com/nfriedly/eslint-config-prettier.git#nfriedly-patch-1", "eslint-plugin-node": "^4.0.0", "eslint-plugin-prettier": "^2.0.0", "jsdoc": "^3.4.0", "karma": "^1.1.1", "karma-browserify": "^5.0.5", "karma-chrome-launcher": "^2.0.0", "karma-firefox-launcher": "^1.0.0", "karma-mocha": "^1.1.1", "memory-fs": "^0.4.1", "mocha": "^3.2.0", "nock": "^9.0.2", "object.assign": "^4.0.4", "prettier": "^0.18.0", "shebang-loader": "0.0.1", "uglify-js": "^2.7.0", "watchify": "^3.7.0", "wav": "^1.0.0", "webpack": "^2.2.1" }, "dependencies": { "async": "^2.0.1", "cookie": "~0.3.1", "csv-stringify": "~1.0.2", "extend": "~3.0.0", "isstream": "~0.1.2", "object.omit": "~2.0.0", "object.pick": "~1.2.0", "request": "~2.79.0", "solr-client": "~0.6.0", "string": "3.3.3", "vcap_services": "~0.2.0", "websocket": "~1.0.22" }, "engines": { "node": ">=4.5.0" }, "scripts": { "test": "npm run lint && mocha test/unit test/integration", "lint": "npm run compat-check && eslint . --cache && dependency-lint", "compat-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", "autofix": "eslint . --fix", "doc": "jsdoc -c scripts/jsdoc/config.json", "watch-doc": "nodemon --watch ./ --ext js,tmpl,json --ignore dist/ --ignore doc/ --ignore test/ --ignore examples/ --exec npm run doc", "test-integration": "mocha test/integration", "test-unit": "npm run lint && mocha test/unit/", "test-browser": "karma start --single-run", "watch": "npm run test-unit -- --watch", "browserify": "browserify index.js --standalone Watson --outfile dist/watson.js", "watchify": "watchify index.js --standalone Watson --outfile dist/watson.js --debug --verbose", "minify": "uglifyjs --compress --mangle --screw-ie8 dist/watson.js --output dist/watson.min.js --preamble \"// Watson Developer Cloud\n// JavaScript SDK$npm_package_version\n// Generated at `date`\n// Copyright IBM ($npm_package_license)\n// $npm_package_homepage\"", "build": "npm run browserify && npm run minify" } }