98 lines
2.2 KiB
JSON
98 lines
2.2 KiB
JSON
{
|
|
"name": "xo-server-auth-ldap",
|
|
"version": "0.6.2",
|
|
"license": "AGPL-3.0",
|
|
"description": "LDAP authentication plugin for XO-Server",
|
|
"keywords": [
|
|
"ldap",
|
|
"orchestra",
|
|
"plugin",
|
|
"xen",
|
|
"xen-orchestra",
|
|
"xo-server"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-auth-ldap",
|
|
"bugs": "https://github.com/vatesfr/xo-web/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@vates.fr"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {
|
|
"xo-server-auth-ldap": "dist/test-cli.js"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.22.0",
|
|
"event-to-promise": "^0.7.0",
|
|
"exec-promise": "^0.6.1",
|
|
"inquirer": "^3.0.1",
|
|
"ldapjs": "^1.0.1",
|
|
"lodash": "^4.17.4",
|
|
"promise-toolbox": "^0.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.22.2",
|
|
"babel-eslint": "^7.1.1",
|
|
"babel-plugin-lodash": "^3.2.11",
|
|
"babel-plugin-transform-runtime": "^6.22.0",
|
|
"babel-preset-env": "^1.1.8",
|
|
"babel-preset-stage-3": "^6.22.0",
|
|
"cross-env": "^3.1.4",
|
|
"dependency-check": "^2.8.0",
|
|
"jest": "^18.1.0",
|
|
"rimraf": "^2.5.4",
|
|
"standard": "^8.6.0"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"commitmsg": "npm test",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"dev-test": "jest --bail --watch",
|
|
"posttest": "standard && dependency-check ./package.json",
|
|
"prebuild": "rimraf dist/",
|
|
"predev": "npm run prebuild",
|
|
"prepublish": "npm run build",
|
|
"test": "jest"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"lodash",
|
|
"transform-runtime"
|
|
],
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": 4
|
|
}
|
|
}
|
|
],
|
|
"stage-3"
|
|
]
|
|
},
|
|
"jest": {
|
|
"testPathDirs": [
|
|
"<rootDir>/src"
|
|
],
|
|
"testRegex": "\\.spec\\.js$"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist"
|
|
],
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|