-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.61 KB
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
{
"name": "@verdaccio/auth-ldap",
"version": "1.3.1",
"description": "LDAP / Active Directory authentication plugin for Verdaccio",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/"
],
"engines": {
"node": ">=24"
},
"keywords": [
"verdaccio",
"plugin",
"auth",
"ldap",
"active-directory",
"authentication"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"license": "MIT",
"homepage": "https://verdaccio.org",
"repository": {
"type": "git",
"url": "https://github.com/verdaccio/verdaccio-auth-ldap.git"
},
"bugs": {
"url": "https://github.com/verdaccio/verdaccio-auth-ldap/issues"
},
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916",
"dependencies": {
"@verdaccio/core": "9.0.0-next-9.5",
"debug": "4.4.3",
"ldapts": "7.2.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/debug": "4.1.12",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "25.5.0",
"@verdaccio/registry-cli": "^1.1.0",
"@verdaccio/e2e-ui": "^2.3.0",
"@verdaccio/eslint-config": "12.0.0",
"@verdaccio/plugin-verifier": "1.0.0-next-9.1",
"@verdaccio/types": "13.0.0-next-8.10",
"cross-env": "^7.0.3",
"cypress": "^15.13.1",
"eslint": "10.0.2",
"prettier": "3.8.1",
"rimraf": "^5.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vite": "8.0.16",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.0"
},
"scripts": {
"clean": "rimraf ./lib",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci:version:changeset": "changeset version",
"ci:version": "pnpm ci:version:changeset && npm run ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"",
"build": "vite build",
"dev": "./scripts/dev.sh",
"dev:ad": "./scripts/dev-ad.sh",
"e2e:ui": "cypress open",
"e2e:ui:run": "cypress run"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/verdaccio"
}
}