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

64 lines
1.4 KiB
JSON
Raw Normal View History

2016-09-16 18:09:18 +02:00
{
"private": false,
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": "AGPL-3.0-or-later",
"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": {
"directory": "packages/xo-import-servers-csv",
2016-09-16 18:09:18 +02:00
"type": "git",
"url": "https://github.com/vatesfr/xen-orchestra.git"
2016-09-16 18:09:18 +02:00
},
"author": {
"name": "Vates SAS",
"url": "https://vates.fr"
},
"main": "dist/",
"bin": {
"xo-import-servers-csv": "dist/index.js"
},
2020-05-28 20:28:28 +02:00
"preferGlobal": true,
"files": [
"dist/"
],
"engines": {
2019-04-02 11:34:27 +02:00
"node": ">=6"
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": {
2020-06-03 10:58:18 +02:00
"@types/node": "^14.0.9",
"@types/through2": "^2.0.31",
2018-04-09 16:02:04 +02:00
"tslint": "^5.9.1",
2019-11-13 17:15:42 +01:00
"tslint-config-standard": "^9.0.0",
"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",
"postversion": "npm publish"
2016-09-16 18:09:18 +02:00
}
}