66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "xo-server-load-balancer",
|
|
"version": "0.3.1",
|
|
"license": "AGPL-3.0",
|
|
"description": "Load balancer for XO-Server",
|
|
"keywords": [
|
|
"load",
|
|
"balancer",
|
|
"server",
|
|
"pool",
|
|
"host"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-load-balancer",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@isonoe.net"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"@xen-orchestra/cron": "^1.0.2",
|
|
"babel-runtime": "^6.11.6",
|
|
"lodash": "^4.16.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-plugin-lodash": "^3.3.2",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-stage-3": "^6.24.1"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"dev": "NODE_DEV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"prepublishOnly": "yarn run build"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-runtime",
|
|
"lodash"
|
|
],
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": 4
|
|
}
|
|
}
|
|
],
|
|
"stage-3"
|
|
]
|
|
}
|
|
}
|