Files
xen-orchestra/packages/xo-import-servers-csv/package.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2016-09-16 18:09:18 +02:00
{
"name": "xo-import-servers-csv",
2018-04-09 16:07:31 +02:00
"version": "1.1.0",
"license": "ISC",
"description": "CLI to import servers in XO from a CSV file",
"keywords": [
"csv",
"host",
"import",
"orchestra",
"pool",
"server",
"xen",
"xen-orchestra"
],
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-import-servers-csv",
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
2016-09-16 18:09:18 +02:00
"repository": {
"type": "git",
"url": "https://github.com/vatesfr/xen-orchestra.git"
2016-09-16 18:09:18 +02:00
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@vates.fr"
},
"main": "dist/",
"bin": {
"xo-import-servers-csv": "dist/index.js"
},
"files": [
"dist/"
],
"engines": {
"node": ">=4"
2016-09-16 18:09:18 +02:00
},
"dependencies": {
"csv-parser": "^2.1.0",
2016-09-16 18:09:18 +02:00
"end-of-stream": "^1.1.0",
2018-04-09 16:02:04 +02:00
"exec-promise": "^0.7.0",
"highland": "^2.10.1",
2018-11-07 18:15:57 +01:00
"through2": "^3.0.0",
"xo-lib": "^0.9.0"
2016-09-16 18:09:18 +02:00
},
"devDependencies": {
"@types/node": "^10.12.2",
"@types/through2": "^2.0.31",
2018-04-09 16:02:04 +02:00
"tslint": "^5.9.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.6"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "tslint 'src/*.ts'",
2018-11-07 22:24:46 +01:00
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build",
"start": "node dist/index.js"
2016-09-16 18:09:18 +02:00
}
}