Files
xen-orchestra/packages/xo-server-auth-ldap/package.json

55 lines
1.4 KiB
JSON
Raw Normal View History

2015-03-17 16:28:31 +01:00
{
"name": "xo-server-auth-ldap",
2021-02-05 15:46:04 +01:00
"version": "0.10.2",
"license": "AGPL-3.0-or-later",
2015-03-17 16:28:31 +01:00
"description": "LDAP authentication plugin for XO-Server",
"keywords": [
"ldap",
"orchestra",
"plugin",
"xen",
"xen-orchestra",
"xo-server"
2015-03-17 16:28:31 +01:00
],
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-auth-ldap",
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
2015-03-17 16:28:31 +01:00
"repository": {
"directory": "packages/xo-server-auth-ldap",
2015-03-17 16:28:31 +01:00
"type": "git",
"url": "https://github.com/vatesfr/xen-orchestra.git"
2015-03-17 16:28:31 +01:00
},
"author": {
"name": "Vates SAS",
"url": "https://vates.fr"
2015-03-17 16:28:31 +01:00
},
"preferGlobal": false,
2015-04-01 10:46:38 +02:00
"main": "dist/",
2015-12-30 17:39:00 +01:00
"bin": {
"xo-server-auth-ldap": "dist/test-cli.js"
},
2016-05-04 16:14:35 +02:00
"engines": {
"node": ">=10"
2016-05-04 16:14:35 +02:00
},
2015-04-01 10:46:38 +02:00
"dependencies": {
"exec-promise": "^0.7.0",
2021-04-02 15:34:19 +02:00
"inquirer": "^8.0.0",
"ldapts": "^2.2.1",
"promise-toolbox": "^0.19.2"
2015-04-01 10:46:38 +02:00
},
2015-03-17 16:28:31 +01:00
"devDependencies": {
2018-09-24 13:39:31 +02:00
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
2020-06-03 10:58:18 +02:00
"cross-env": "^7.0.2",
2019-09-02 09:45:38 +02:00
"rimraf": "^3.0.0"
2015-03-17 16:28:31 +01:00
},
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
"prebuild": "rimraf dist/",
2018-02-05 14:15:57 +01:00
"predev": "yarn run prebuild",
"prepublishOnly": "yarn run build"
},
"private": true
2015-03-17 16:28:31 +01:00
}