forked from vesse/node-ldapauth-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"name": "ldapauth-fork",
"version": "5.0.1",
"main": "./lib/ldapauth.js",
"types": "./lib/ldapauth.d.ts",
"description": "Authenticate against an LDAP server",
"author": "Vesa Poikajärvi <vesa.poikajarvi@iki.fi>",
"license": "MIT",
"keywords": [
"authenticate",
"ldap",
"authentication",
"auth"
],
"repository": {
"type": "git",
"url": "git://github.com/vesse/node-ldapauth-fork.git"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"prepublishOnly": "npm run lint",
"lint": "eslint ./lib",
"lint:watch": "watch 'npm run lint' ./lib --wait 0.5",
"pretest": "cd test && tsc",
"test": "cd test && node test.js"
},
"dependencies": {
"@types/ldapjs": "^1.0.9",
"bcryptjs": "^2.4.0",
"ldapjs": "^2.2.1",
"lru-cache": "^6.0.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/node": "^14.14.7",
"bunyan": "^1.8.14",
"eslint": "^7.13.0",
"typescript": "^4.0.5",
"watch": "^1.0.2"
}
}