-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "kth-node-ldap",
"version": "5.3.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:mocha": "mocha tests/__mocha_tests__/** --exit",
"test": "mocha tests/__mocha_tests__/** --exit && jest",
"test:jest": "jest",
"test:watch": "mocha tests/__mocha_tests__/** --exit && jest --watch",
"build": "./build.sh",
"lint": "eslint \"**/*.{js,jsx}\" --quiet",
"lint-v": "eslint \"**/*.{js,jsx}\" ",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-ldap.git"
},
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"keywords": [
"ldap",
"ldapjs",
"promise",
"filter"
],
"license": "MIT",
"dependencies": {
"ldapts": "^6.0.0"
},
"peerDependencies": {
"@kth/log": "^4.0.5"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.4.0",
"@kth/log": "^4.0.7",
"chai": "^4.4.1",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"mocha": "^10.4.0",
"prettier": "^3.2.5"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}