-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 KB
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
{
"name": "kth-node-ldap",
"version": "5.4.0",
"description": "Adds a Promise-based API on top of ldapjs as well as a filter builder.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "./build.sh",
"lint": "eslint . --quiet",
"lint-v": "eslint .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-ldap.git"
},
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"keywords": [
"ldap",
"ldapjs",
"promise",
"filter"
],
"license": "MIT",
"dependencies": {
"ldapts": "^8.1.7"
},
"peerDependencies": {
"@kth/log": "^4.0.5"
},
"devDependencies": {
"@kth/eslint-config-kth": "^4.0.0",
"@kth/log": "^4.0.8",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}