-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "passport-ldapauth",
"description": "LDAP authentication strategy for Passport",
"author": "Vesa Poikajärvi <[email protected]>",
"contributors": [
"Simon Gaeremynck <[email protected]>",
"Michael Bailly <[email protected]>",
"Jason Gelinas <[email protected]>",
"arumi <[email protected]>",
"Anthony Hernandez <[email protected]>",
"Chris Harwood <[email protected]>",
"David Dolcimascolo <[email protected]>"
],
"keywords": [
"ldap",
"passport",
"authentication",
"ldapauth"
],
"version": "3.0.1",
"license": "MIT",
"main": "./lib/passport-ldapauth",
"types": "./lib/passport-ldapauth/strategy.d.ts",
"engines": {
"node": ">=10.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vesse/passport-ldapauth.git"
},
"bugs": {
"url": "https://github.com/vesse/passport-ldapauth/issues"
},
"dependencies": {
"ldapauth-fork": "^5.0.1",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.9",
"@types/node": "^14.14.7",
"@types/passport": "^1.0.4",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"chai": "^4.2.0",
"eslint": "^8.18.0",
"express": "^4.17.1",
"ldapjs": "^2.2.1",
"merge": "^2.1.0",
"mocha": "^10.0.0",
"passport": "^0.6.0",
"supertest": "^6.0.1",
"typescript": "^4.0.5",
"watch": "^1.0.2"
},
"scripts": {
"prepare": "npm run lint",
"lint": "eslint ./lib",
"lint:watch": "watch 'npm run lint' ./lib --wait 0.5",
"test": "NODE_PATH=lib mocha --reporter spec test/*-test.js",
"test:watch": "watch 'npm test' ./lib ./test --wait 0.5",
"test:typescript": "cd test/typescript && tsc"
}
}