-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "nestjs-ldap",
"version": "3.5.1",
"description": "NestJS library to access LDAP",
"author": "Stanislav V Vyaliy",
"license": "MIT",
"keywords": [
"nestjs",
"nest",
"ldap"
],
"repository": {
"type": "git",
"url": "https://github.com/wisekaa03/nestjs-ldap.git"
},
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.json",
"prepublish": "yarn build",
"publish-public": "yarn publish --access public",
"test": "jest",
"clean": "rm -rf node_modules yarn.lock",
"lint": "node ./node_modules/eslint/bin/eslint.js lib/**"
},
"resolutions": {
"**/**/redis-commands": "^1",
"**/**/rimraf": "^3"
},
"dependencies": {
"@nestjs/common": "^8.4.7",
"bcrypt": "^5.0.1",
"cache-manager": "^4.0.1",
"cache-manager-ioredis": "^2.1.0",
"ldapjs": "^2.3.3",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/config": "^2.1.0",
"@nestjs/core": "^8.4.7",
"@nestjs/testing": "^8.4.7",
"@types/asn1": "^0.2.0",
"@types/bcrypt": "^5.0.0",
"@types/cache-manager": "^4.0.0",
"@types/cache-manager-ioredis": "^2.0.2",
"@types/ldapjs": "^2.2.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
}
}