-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "hubot-ibmcloud-weather",
"version": "0.0.24",
"description": "A hubot script for obtaining weather information using IBM Cloud Weather Insights.",
"main": "index.js",
"repository": {
"url": "https://github.com/ibm-cloud-solutions/hubot-ibmcloud-weather",
"type": "git"
},
"scripts": {
"start": ". config/env && hubot -a shell",
"slack": ". config/env && hubot -a slack",
"facebook": ". config/env && hubot -a fb",
"lint": "eslint src/**/*.js test/**/*.js index.js",
"postinstall": "initDb src/nlc/NLC.json",
"test": ". test/.env && mocha --compilers --require ./node_modules/coffee-script/register --compilers coffee:coffee-script test",
"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"
},
"keywords": [
"hubot",
"hubot-scripts",
"bluemix",
"cloud",
"slack",
"weather",
"ibm",
"ibm cloud"
],
"author": "ibm-cloud-solutions",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.12",
"eslint": "^2.9.0",
"eslint-config-strongloop": "^2.0.1",
"hubot": "^2.19.0",
"hubot-fb": "^3.0.0",
"hubot-help": "^0.2.0",
"hubot-ibmcloud-auth": "latest",
"hubot-ibmcloud-nlc": "latest",
"hubot-shell": "^1.0.2",
"hubot-slack": "^4.0.2",
"hubot-test-helper": "^1.4.4",
"istanbul": "0.4.0",
"mocha": "^2.4.5",
"mocha-sprinkles": "^2.2.1",
"nock": "^8.0.0"
},
"peerDependencies": {
"hubot": "^2.19.0",
"hubot-conversation": "^1.1.1",
"hubot-ibmcloud-activity-emitter": ">=0.0.3",
"hubot-ibmcloud-cognitive-lib": ">=0.0.40",
"hubot-ibmcloud-formatter": ">=0.0.29",
"hubot-ibmcloud-utils": ">=0.0.14",
"i18n-2": "^0.6.3",
"lodash": "^4.13.1",
"request": "^2.72.0",
"watson-developer-cloud": ">=2.1.4"
},
"engines": {
"node": ">= 4.2.0"
},
"files": [
"src",
"index.js"
],
"dependencies": {}
}