58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "vhd-cli",
|
|
"version": "0.3.0",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"keywords": [],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/vhd-cli",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "packages/vhd-cli",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@isonoe.net"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {
|
|
"vhd-cli": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"@xen-orchestra/fs": "^0.10.1",
|
|
"cli-progress": "^3.1.0",
|
|
"exec-promise": "^0.7.0",
|
|
"getopts": "^2.2.3",
|
|
"struct-fu": "^1.2.0",
|
|
"vhd-lib": "^0.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"babel-plugin-lodash": "^3.3.2",
|
|
"cross-env": "^5.1.3",
|
|
"execa": "^2.0.2",
|
|
"index-modules": "^0.3.0",
|
|
"promise-toolbox": "^0.13.0",
|
|
"rimraf": "^3.0.0",
|
|
"tmp": "^0.1.0"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"prebuild": "rimraf dist/ && index-modules --cjs-lazy src/commands",
|
|
"predev": "yarn run prebuild",
|
|
"prepare": "yarn run build",
|
|
"postversion": "npm publish"
|
|
}
|
|
}
|