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

61 lines
1.5 KiB
JSON
Raw Normal View History

2015-03-17 16:28:31 +01:00
{
"name": "xo-server-auth-ldap",
2019-11-28 16:58:30 +01:00
"version": "0.6.6",
2015-06-16 12:46:58 +02:00
"license": "AGPL-3.0",
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": "Julien Fontanet",
2015-12-30 19:01:41 +01:00
"email": "julien.fontanet@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"
},
2015-03-17 16:28:31 +01:00
"files": [
2015-04-01 10:46:38 +02:00
"dist/"
2015-03-17 16:28:31 +01:00
],
2016-05-04 16:14:35 +02:00
"engines": {
2018-08-20 16:49:19 +02:00
"node": ">=6"
2016-05-04 16:14:35 +02:00
},
2015-04-01 10:46:38 +02:00
"dependencies": {
"event-to-promise": "^0.8.0",
"exec-promise": "^0.7.0",
2019-09-02 09:45:38 +02:00
"inquirer": "^7.0.0",
"ldapjs": "^1.0.1",
"lodash": "^4.17.4",
2019-12-21 13:36:55 +01:00
"promise-toolbox": "^0.15.0"
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",
2017-11-20 13:52:04 +01:00
"babel-plugin-lodash": "^3.3.2",
2019-10-11 17:15:25 +02:00
"cross-env": "^6.0.3",
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
}