-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "adauth",
"version": "1.0.0",
"main": "./dist/adauth.js",
"types": "./dist/adauth.d.ts",
"files": [
"./dist/**/*"
],
"description": "Authenticate against an Active Directory domain via LDAP",
"author": {
"name": "Adaline Valentina Simonian",
"email": "[email protected]",
"website": "https://github.com/adalinesimonian"
},
"contributors": [
"Vesa Poikajärvi <[email protected]>",
"Trent Mick <[email protected]> (http://trentm.com)",
"Jacques Marneweck (https://github.com/jacques)"
],
"license": "MIT",
"keywords": [
"authenticate",
"ad",
"active-directory",
"ldap",
"authentication",
"auth"
],
"repository": {
"type": "git",
"url": "https://github.com/adalinesimonian/node-adauth.git"
},
"funding": "https://github.com/sponsors/adalinesimonian",
"engines": {
"node": ">=12.22.1"
},
"scripts": {
"build": "tsc",
"dump": "ts-node scripts/dump.ts",
"format": "run-s format:eslint format:prettier",
"format:eslint": "eslint . --fix",
"format:prettier": "prettier . --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint . --report-unused-disable-directives",
"lint:prettier": "prettier . --check",
"lint:types": "tsc --noEmit",
"lint-watch": "chokidar \"**/*.{ts,js}\" -i node_modules -c \"yarn lint\"",
"prepack": "run-s lint build",
"prepublishOnly": "run-s lint build",
"test": "yarn jest",
"test:integration": "cross-env INTEGRATION_TESTS=true yarn jest tests/integration"
},
"dependencies": {
"bcryptjs": "^2.4.0",
"ldapjs": "^2.2.1",
"long": "^5.0.0",
"lru-cache": "^6.0.0",
"make-fetch-happen": "^9.0.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/bunyan": "1.8.8",
"@types/jest": "27.0.3",
"@types/ldapjs": "2.2.2",
"@types/long": "4.0.1",
"@types/lru-cache": "5.1.1",
"@types/make-fetch-happen": "9.0.1",
"@types/node": "12.20.37",
"@types/valid-url": "1.0.3",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"bunyan": "1.8.15",
"chokidar-cli": "3.0.0",
"cross-env": "7.0.3",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"fast-json-stable-stringify": "2.1.0",
"jest": "27.4.5",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"packageManager": "[email protected]"
}