├── .editorconfig ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── index.js ├── package.json └── tests ├── bootstrap.spec.js ├── integration └── test.spec.js ├── ldap-server-mock-conf.json └── users.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .idea 4 | -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | tests/* -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/package.json -------------------------------------------------------------------------------- /tests/bootstrap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/tests/bootstrap.spec.js -------------------------------------------------------------------------------- /tests/integration/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/tests/integration/test.spec.js -------------------------------------------------------------------------------- /tests/ldap-server-mock-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/tests/ldap-server-mock-conf.json -------------------------------------------------------------------------------- /tests/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexandre-io/verdaccio-ldap/HEAD/tests/users.json --------------------------------------------------------------------------------