-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.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
{
"name": "hubot-ibmcloud-auth",
"version": "0.0.23",
"description": "IBM Cloud bot authorization and white listing",
"main": "index.js",
"repository": {
"url": "https://github.com/ibm-cloud-solutions/hubot-ibmcloud-auth",
"type": "git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"scripts": {
"start": "source config/env && hubot -a shell",
"slack": "source config/env && hubot -a slack",
"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",
"slack",
"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-test-helper": "^1.4.4",
"istanbul": "^0.4.0",
"mocha": "^2.4.5",
"rewire": "^2.5.1"
},
"peerDependencies": {
"hubot": "^2.19.0",
"i18n-2": "*",
"lodash": "^4.13.1"
},
"engines": {
"node": ">= 4.2.0"
},
"files": [
"src",
"index.js"
],
"dependencies": {
"ldapjs": "^1.0.0"
}
}