Files
xen-orchestra/packages/xo-server-load-balancer/package.json
T

66 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-24 10:05:20 +01:00
{
"name": "xo-server-load-balancer",
2016-10-19 13:17:10 +02:00
"version": "0.3.1",
2016-02-24 10:05:20 +01:00
"license": "AGPL-3.0",
"description": "Load balancer for XO-Server",
"keywords": [
"load",
"balancer",
"server",
"pool",
"host"
],
2017-01-13 17:40:13 +01:00
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-load-balancer",
2018-02-07 10:40:09 +01:00
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
2016-02-24 10:05:20 +01:00
"repository": {
"type": "git",
2017-01-13 17:40:13 +01:00
"url": "https://github.com/vatesfr/xen-orchestra.git"
2016-02-24 10:05:20 +01:00
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
],
"engines": {
2016-09-29 14:00:25 +02:00
"node": ">=4"
2016-02-24 10:05:20 +01:00
},
"dependencies": {
2018-02-20 11:42:19 +01:00
"@xen-orchestra/cron": "^1.0.2",
2016-09-29 14:00:25 +02:00
"babel-runtime": "^6.11.6",
"lodash": "^4.16.2"
2016-02-24 10:05:20 +01:00
},
"devDependencies": {
2017-07-04 11:07:35 +02:00
"babel-cli": "^6.24.1",
2017-11-20 13:52:04 +01:00
"babel-plugin-lodash": "^3.3.2",
2017-07-04 11:07:35 +02:00
"babel-plugin-transform-runtime": "^6.23.0",
2017-12-05 11:46:02 +01:00
"babel-preset-stage-3": "^6.24.1"
2016-02-24 10:05:20 +01:00
},
"scripts": {
2016-09-29 14:00:25 +02:00
"build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"dev": "NODE_DEV=development babel --watch --source-maps --out-dir=dist/ src/",
2017-12-05 11:46:02 +01:00
"prepublishOnly": "yarn run build"
2016-09-29 14:00:25 +02:00
},
"babel": {
"plugins": [
"transform-runtime",
"lodash"
],
"presets": [
2017-11-27 12:59:04 +00:00
[
"env",
{
"targets": {
"node": 4
}
}
],
"stage-3"
2016-09-29 14:00:25 +02:00
]
2016-02-24 10:05:20 +01:00
}
}