forked from trentm/node-ldapauth
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "ldapauth-fork",
"version": "6.1.0",
"main": "./lib/ldapauth.js",
"types": "./lib/ldapauth.d.ts",
"description": "Authenticate against an LDAP server",
"author": "Vesa Poikajärvi <[email protected]>",
"license": "MIT",
"keywords": [
"authenticate",
"ldap",
"authentication",
"auth"
],
"repository": {
"type": "git",
"url": "git://github.com/vesse/node-ldapauth-fork.git"
},
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"prepublishOnly": "npm run lint",
"lint": "eslint ./lib",
"lint:watch": "watch 'npm run lint' ./lib --wait 0.5",
"prettier:fix": "prettier --write '**/*.{js,json,md,ts}'",
"prettier": "prettier --list-different '**/*.{js,json,md,ts}'",
"pretest": "cd test && tsc",
"test": "cd test && node test.js",
"prepare": "husky"
},
"dependencies": {
"bcryptjs": "^2.4.0",
"ldapjs": "^3.0.7",
"lru-cache": "^10.2.2"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/bunyan": "^1.8.11",
"@types/ldapjs": "^3.0.6",
"@types/node": "^20.14.2",
"bunyan": "^1.8.14",
"eslint": "^9.4.0",
"eslint-plugin-jsdoc": "^48.2.8",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"watch": "^1.0.2"
}
}