forked from watson-developer-cloud/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "watson-developer-cloud",
"version": "2.11.0",
"description": "Client library to use the IBM Watson Services and AlchemyAPI",
"main": "./lib/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": "[email protected]"
},
{
"name": "Nathan Friedly",
"email": "[email protected]"
},
{
"name": "Jeff Stylos",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/node-sdk/issues"
},
"devDependencies": {
"browserify": "^13.0.1",
"codecov": ">1.0.0",
"concat-stream": "^1.5.1",
"dependency-lint": "^4.2.0",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"karma": "^1.1.1",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"object.assign": "^4.0.4",
"uglify-js": "^2.7.0",
"watchify": "^3.7.0",
"wav": "^1.0.0"
},
"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.1.1",
"request": "~2.74.0",
"solr-client": "~0.6.0",
"string": "3.3.1",
"vcap_services": "~0.2.0",
"websocket": "~1.0.22"
},
"engines": {
"node": ">=0.12"
},
"scripts": {
"test": "npm run lint && npm run codecov",
"lint": "eslint . && node test/dependency-lint.js",
"autofix": "eslint . --fix",
"prepare": "npm test && npm version patch",
"doc": "jsdoc -c jsdoc/config.json",
"watch-doc": "nodemon --watch ./ --ext js,tmpl,json --ignore dist/ --ignore doc/ --ignore test/ --ignore examples/ --exec npm run doc",
"codecov": "istanbul cover mocha test/unit test/integration && codecov",
"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"
}
}