-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "hubot-ldap-auth",
"version": "0.2.0",
"description": "An auth module for Hubot that delegates to an LDAP server",
"main": "index.coffee",
"repository": {
"type": "git",
"url": "git://github.com/jmcshane/hubot-ldap-auth.git"
},
"keywords": [
"hubot",
"ldap",
"authorization",
"hubot-scripts"
],
"author": "jmcshane <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmcshane/hubot-ldap-auth/issues"
},
"homepage": "https://github.com/jmcshane/hubot-ldap-auth#readme",
"dependencies": {
"fs": "0.0.1-security",
"ldapjs": "^1.0.1",
"lodash": "^4.17.10",
"path": "^0.12.7",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.12.3",
"hubot": "^2.19.0",
"hubot-mock-adapter": "^1.0.0",
"hubot-test-helper": "^1.5.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"scripts": {
"test": "mocha --no-timeouts --recursive --compilers 'coffee:coffee-script/register' --require coffee-coverage/register-istanbul test/*.coffee"
}
}