ldapts
Version:
LDAP client
112 lines (111 loc) • 2.97 kB
JSON
{
"name": "ldapts",
"version": "8.0.8",
"description": "LDAP client",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"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",
"lint": "run-p lint:*",
"lint-staged": "lint-staged",
"docker:up": "docker compose up -d --wait",
"docker:down": "docker compose down",
"beta": "npm publish --tag beta",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky"
},
"lint-staged": {
"*.md": [
"prettier --write",
"markdownlint --config=.github/linters/.markdown-lint.yml --fix"
],
"*.{cjs,mjs,ts}": [
"eslint --fix"
],
"*.{json5,yml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ldapts/ldapts.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ldap",
"active",
"directory"
],
"author": "jim@biacreations.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ldapts/ldapts/issues"
},
"homepage": "https://github.com/ldapts/ldapts#readme",
"dependencies": {
"@types/asn1": ">=0.2.4",
"asn1": "0.2.6",
"debug": "4.4.1",
"strict-event-emitter-types": "2.0.0",
"uuid": "11.1.0",
"whatwg-url": "14.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.3",
"@semantic-release/npm": "12.0.2",
"@semantic-release/release-notes-generator": "14.0.3",
"@types/chai": "5.2.2",
"@types/chai-as-promised": "8.0.2",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",
"@types/node": ">=20",
"@types/sinon": "17.0.4",
"@types/whatwg-url": "13.0.0",
"chai": "5.2.0",
"chai-as-promised": "8.0.1",
"eslint": "9.29.0",
"eslint-config-decent": "2.8.24",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"markdownlint-cli": "0.45.0",
"mocha": "11.7.1",
"node-forge": "1.3.1",
"npm-run-all2": "8.0.4",
"pinst": "3.0.0",
"prettier": "3.6.1",
"semantic-release": "24.2.5",
"sinon": "21.0.0",
"ts-mockito": "2.6.1",
"tsx": "4.20.3",
"typescript": "5.8.3",
"unbuild": "3.5.0"
}
}