UNPKG

ldapts

Version:
102 lines (101 loc) 2.68 kB
{ "name": "ldapts", "version": "7.3.3", "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": "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,mjs,ts}": [ "eslint --fix" ] }, "repository": { "type": "git", "url": "git+https://github.com/ldapts/ldapts.git" }, "engines": { "node": ">=18" }, "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.0", "strict-event-emitter-types": "~2.0.0", "uuid": "~11.1.0", "whatwg-url": "~14.2.0" }, "devDependencies": { "@types/chai": "~5.2.1", "@types/chai-as-promised": "~8.0.2", "@types/debug": "~4.1.12", "@types/mocha": "~10.0.10", "@types/node": ">=22", "@types/sinon": "~17.0.4", "@types/whatwg-url": "~13.0.0", "chai": "~5.2.0", "chai-as-promised": "~8.0.1", "eslint": "~9.23.0", "eslint-config-decent": "^2.6.2", "husky": "~9.1.7", "lint-staged": "~15.5.0", "markdownlint-cli": "~0.44.0", "mocha": "~11.1.0", "node-forge": "^1.3.1", "npm-run-all": "~4.1.5", "pinst": "~3.0.0", "prettier": "~3.5.3", "sinon": "~19.0.4", "ts-mockito": "~2.6.1", "tsx": "~4.19.3", "typescript": "~5.8.2", "unbuild": "3.5.0" } }