forked from watson-developer-cloud/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.3 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.3 KB
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
{
"name": "watson-developer-cloud",
"version": "0.10.6",
"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",
"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 "
],
"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": {
"mocha": "^2.3.3",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"nock": "^2.15.0",
"jshint": "^2.8.0",
"qs": "^5.2.0"
},
"dependencies": {
"async": "~1.4.2",
"cookie": "~0.2.2",
"csv-stringify": "~0.0.8",
"extend": "~3.0.0",
"isstream": "~0.1.2",
"object.omit": "~2.0.0",
"object.pick": "~1.1.1",
"request": "~2.65.0",
"solr-client": "~0.6.0",
"string": "3.3.1",
"vcap_services": "~0.1.7"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "jshint --exclude node_modules/ **/*.js && mocha --reporter spec --timeout 4000",
"prepare": "npm test && npm version patch",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --reporter spec --timeout 4000",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}
}