Files
xen-orchestra/package.json

64 lines
1.3 KiB
JSON
Raw Normal View History

2016-09-16 18:09:18 +02:00
{
"name": "xo-import-servers-csv",
"version": "1.0.0",
"license": "ISC",
"description": "CLI to import servers in XO from a CSV file",
"keywords": [
"csv",
"host",
"import",
"orchestra",
"pool",
"server",
"xen",
"xen-orchestra"
],
2016-09-19 14:53:33 +02:00
"homepage": "https://github.com/vatesfr/xo-import-servers-csv#readme",
"bugs": "https://github.com/vatesfr/xo-import-servers-csv/issues",
2016-09-16 18:09:18 +02:00
"repository": {
"type": "git",
2016-09-19 14:53:33 +02:00
"url": "git+https://github.com/vatesfr/xo-import-servers-csv.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": "^1.11.0",
"end-of-stream": "^1.1.0",
"exec-promise": "^0.6.1",
"highland": "^2.10.1",
2016-09-16 18:09:18 +02:00
"through2": "^2.0.1",
"xo-lib": "^0.8.0"
},
"devDependencies": {
"@types/node": "^7.0.0",
"@types/through2": "^2.0.31",
"tslint": "^4.0.2",
"tslint-config-standard": "^3.0.0",
"typescript": "^2.0.8"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "tslint 'src/*.ts'",
"posttest": "npm run lint",
"start": "node dist/index.js"
},
"config": {
"ghooks": {
"commit-msg": "npm test"
}
2016-09-16 18:09:18 +02:00
}
}