-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.93 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-cloudant",
"version": "0.0.9",
"description": "hubot-ibmcloud-cloudant provides Bluemix Cloudant management functionality.",
"main": "index.js",
"repository": {
"url": "https://github.com/ibm-cloud-solutions/hubot-ibmcloud-cloudant",
"type": "git"
},
"scripts": {
"start": "source config/env && hubot -a shell",
"slack": "source config/env && hubot -a slack",
"facebook": "source config/env && hubot -a fb",
"postinstall": "initDb src/nlc/NLC.json",
"lint": "eslint src/**/*.js test/*.js index.js",
"test": ". test/.env && mocha 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",
"ibm",
"ibm cloud",
"slack",
"cloudant"
],
"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-formatter": ">=0.0.29",
"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",
"rewire": "2.5.1"
},
"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-utils": ">=0.0.14",
"i18n-2": "*"
},
"engines": {
"node": ">= 4.2.0"
},
"files": [
"src",
"index.js"
],
"dependencies": {
"cloudant": "^1.4.2",
"dateformat": "^1.0.12",
"string-length": "^1.0.1"
}
}