-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.24 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
{
"name": "ldap-directory-manager",
"version": "0.16.8",
"description": "schema-aware, type-safe LDAP manager, written in typescript to create hight-level functionalities",
"repository": {
"type": "git",
"url": "https://github.com/saostad/ldap-directory-manager.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --check \"src/**/*.ts\" --write",
"lint": "eslint --ext \".ts,.js\" src --quiet",
"gen-docs": "typedoc src/index.ts",
"postgen-docs": "node ./config/github.js",
"tag": "node ./config/tag.js",
"auto-changelog": "auto-changelog --hide-credit --breaking-pattern \"breaking:\"",
"gen-changelog": "npm run auto-changelog && git add CHANGELOG.md && git commit -m \"doc: change log\"",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"prepublishOnly": "npm-run-all -s tsc gen-docs",
"postpublish": "npm-run-all -s tag gen-changelog",
"prod": "node --unhandled-rejections=strict dist/app.js",
"inspect": "node --inspect --unhandled-rejections=strict dist/app.js",
"dev": "nodemon --watch dist --exec \"npm run inspect\"",
"start": "npm-run-all -p dev tsc:watch"
},
"keywords": [
"ldap",
"typescript",
"schema",
"schema-aware",
"client",
"active",
"directory",
"manager"
],
"author": "Saeid Ostad",
"license": "MIT",
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "1000"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^16.11.49",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"auto-changelog": "^2.4.0",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/ldapjs": "^2.2.3",
"fast-node-logger": "^3.0.3",
"fuse.js": "^6.6.2",
"ldap-query-generator": "^0.8.7",
"ldap-schema-ts-generator": "^4.0.14",
"ldap-ts-client": "^0.14.8"
}
}