-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.7 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
{
"name": "hubot-ibmcloud-service-suggest",
"version": "0.0.14",
"description": "A bot based on Watson Natural Language Classifier for finding the Bluemix service(s) matching a description of the needs",
"license": "Apache-2.0",
"scripts": {
"start": "source config/env && hubot -a shell",
"slack": "source config/env && hubot -a slack",
"facebook": "source config/env && hubot -a fb",
"lint": "eslint test/*.js test/**/*.js src/**/*.js tools/crawler/*.js",
"test": ". test/.env && mocha --require coffee-script/register --compilers coffee:coffee-script test",
"crawler": "node tools/crawler/nlc.data.generator.js",
"crawler-tester": "node test/crawler/crawler.tester.js",
"update-config": "source config/env && node tools/crawler/nlc.config.update.js",
"postinstall": "initDb src/nlc/NLC.json",
"coverage": ". test/.env && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"url": "https://github.com/ibm-cloud-solutions/hubot-ibmcloud-service-suggest",
"type": "git"
},
"keywords": [
"hubot",
"hubot-scripts",
"bluemix",
"cloud",
"watson",
"slack",
"service",
"suggest",
"ibm",
"ibm cloud"
],
"author": "ibm-cloud-solutions",
"dependencies": {
"app-root-path": "^1.2.1",
"config": "0.4.28"
},
"peerDependencies": {
"i18n-2": "^0.6.3",
"hubot": "^2.19.0",
"hubot-ibmcloud-cognitive-lib": ">=0.0.40",
"hubot-ibmcloud-activity-emitter": ">=0.0.3",
"hubot-ibmcloud-utils": ">=0.0.14",
"lodash": "^4.13.1",
"watson-developer-cloud": ">=2.1.4"
},
"devDependencies": {
"hubot-ibmcloud-auth": ">=0.0.8",
"hubot-ibmcloud-nlc": ">=0.0.20",
"hubot-ibmcloud-formatter": ">=0.0.29",
"hubot-cf-convenience": ">=0.0.7",
"eslint": "^2.9.0",
"chai": "^3.5.0",
"hubot-test-helper": "^1.4.4",
"coveralls": "^2.11.12",
"coffee-script": "^1.10.0",
"istanbul": "0.4.0",
"mocha": "^2.4.5",
"js-crawler": "^0.3.9",
"winston": "^2.2.0",
"yargs": "^4.7.1",
"csv-parse": "^1.1.2",
"csv-stringify": "^1.0.4",
"dotenv": "^2.0.0",
"async": "^1.5.0",
"number-to-words": "^1.2.3",
"nock": "^8.0.0",
"node-phantom-simple": "^2.2.4",
"rewire": "^2.5.1",
"slimerjs": "^0.906.2",
"humanize-duration": "^3.9.0",
"hashes": "^0.1.3",
"hubot-fb": "^3.0.0",
"hubot-help": "^0.2.0",
"hubot-shell": "^1.0.2",
"hubot-slack": "^4.0.2",
"portend": "^1.0.0"
},
"main": "index.js",
"files": [
"src",
"data",
"index.js",
"lib"
],
"engines": {
"node": ">= 4.2.0"
}
}