8efe4ec194
- created server configuration - implemented downloading files from nextcloud to a local directory - build of the docker image added to the GutHub workflow - Twake client added - Creating user in Twake Drive from ldap - Ldap client with ldapsearch(TODO make it work with ldapjs) - Jest debug tests
28 lines
562 B
JSON
28 lines
562 B
JSON
{
|
|
"name": "ldap_project",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "npm run build:clean && npm run build:ts",
|
|
"build:ts": "tsc",
|
|
"build:clean": "rimraf ./dist",
|
|
"sync": "node dist/index.js",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.4.0",
|
|
"dotenv": "^16.0.3",
|
|
"ldapjs": "^3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ldapjs": "^2.2.5",
|
|
"typescript": "^5.0.4",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|