forked from ldapts/ldapts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.08 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@jupiterone/ldapts",
"version": "8.0.1",
"description": "LDAP client",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "unbuild",
"test": "npm run test:types && mocha \"tests/**/*.tests.ts\"",
"test:types": "tsc --noEmit --skipLibCheck",
"lint:markdown": "prettier --write '*.md' '!(node_modules|dist)/**/*.md' && markdownlint '*.md' '!(node_modules|dist)/**/*.md' --config=.github/linters/.markdown-lint.yml --fix",
"lint:code": "eslint --fix --ext .ts src tests",
"lint": "run-p lint:*",
"lint-staged": "lint-staged",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"beta": "npm publish --tag beta",
"prepublishOnly": "npm run lint && npm run build && npm run test && pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky"
},
"lint-staged": {
"*.md": [
"prettier --write",
"markdownlint --config=.github/linters/.markdown-lint.yml --fix"
],
"*.cjs": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jupiterone/ldapts.git"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ldap",
"active",
"directory"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jupiterone/ldapts/issues"
},
"homepage": "https://github.com/jupiterone/ldapts#readme",
"dependencies": {
"@types/asn1": ">=0.2.4",
"@types/uuid": ">=9",
"asn1": "~0.2.6",
"debug": "~4.3.4",
"strict-event-emitter-types": "~2.0.0",
"uuid": "~9.0.1"
},
"devDependencies": {
"@types/chai": "~4.3.14",
"@types/chai-as-promised": "~7.1.8",
"@types/debug": "~4.1.12",
"@types/mocha": "~10.0.6",
"@types/node": ">=20",
"@types/sinon": "~17.0.3",
"@typescript-eslint/eslint-plugin": "~7.6.0",
"@typescript-eslint/parser": "~7.6.0",
"chai": "~4.4.1",
"chai-as-promised": "~7.1.1",
"eslint": "~8.57.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "~18.0.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsdoc": "~48.2.3",
"eslint-plugin-mocha": "10.4.1",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-security": "~2.1.1",
"husky": "~9.0.11",
"lint-staged": "~15.2.2",
"markdownlint-cli": "~0.39.0",
"mocha": "~10.4.0",
"npm-run-all": "~4.1.5",
"pinst": "~3.0.0",
"prettier": "~3.2.5",
"sinon": "~17.0.1",
"ts-mockito": "~2.6.1",
"tsx": "~4.7.2",
"typescript": "~5.4.4",
"unbuild": "2.0.0"
}
}