UNPKG

ldapts

Version:
106 lines (105 loc) 2.89 kB
{ "name": "ldapts", "version": "8.1.6", "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", "test:imports": "node --no-experimental-require-module tests/import.tests.cjs && node tests/import.tests.mjs", "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": { "strict-event-emitter-types": "2.0.0" }, "devDependencies": { "@semantic-release/changelog": "6.0.3", "@semantic-release/commit-analyzer": "13.0.1", "@semantic-release/git": "10.0.1", "@semantic-release/github": "12.0.3", "@semantic-release/npm": "13.1.3", "@semantic-release/release-notes-generator": "14.1.0", "@types/chai": "5.2.3", "@types/chai-as-promised": "8.0.2", "@types/mocha": "10.0.10", "@types/node": ">=20", "@types/sinon": "21.0.0", "chai": "6.2.2", "chai-as-promised": "8.0.2", "eslint": "9.39.2", "eslint-config-decent": "3.1.112", "husky": "9.1.7", "lint-staged": "16.2.7", "markdownlint-cli": "0.47.0", "mocha": "11.7.5", "node-forge": "1.3.3", "npm-run-all2": "8.0.4", "pinst": "3.0.0", "prettier": "3.8.1", "semantic-release": "25.0.3", "sinon": "21.0.1", "ts-mockito": "2.6.1", "tsx": "4.21.0", "typescript": "5.9.3", "unbuild": "3.6.1" } }