Files
xen-orchestra/packages/xo-vmdk-to-vhd/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "xo-vmdk-to-vhd",
2019-01-31 15:30:17 +01:00
"version": "0.1.6",
"license": "AGPL-3.0",
2016-08-15 18:56:33 +02:00
"description": "JS lib streaming a vmdk file to a vhd",
"keywords": [
"vhd",
"vmdk"
],
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-vmdk-to-vhd",
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
"repository": {
"directory": "packages/xo-vmdk-to-vhd",
"type": "git",
"url": "https://github.com/vatesfr/xen-orchestra.git"
},
2016-08-15 18:56:33 +02:00
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
2016-08-12 12:02:52 +02:00
],
"engines": {
2018-08-20 16:49:19 +02:00
"node": ">=6"
},
2016-08-15 18:56:33 +02:00
"dependencies": {
"child-process-promise": "^2.0.3",
2019-03-20 11:26:05 +01:00
"core-js": "3.0.0",
"pipette": "^0.9.3",
2019-03-20 11:26:05 +01:00
"promise-toolbox": "^0.12.1",
"tmp": "^0.0.33",
2019-03-29 14:11:09 +01:00
"vhd-lib": "^0.6.0"
},
"devDependencies": {
2018-09-24 13:39:31 +02:00
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-plugin-lodash": "^3.3.2",
2017-12-22 10:27:05 +01:00
"cross-env": "^5.1.3",
"event-to-promise": "^0.8.0",
2018-08-28 20:29:29 +02:00
"execa": "^1.0.0",
2018-07-17 11:03:57 +02:00
"fs-extra": "^7.0.0",
2018-08-10 11:20:59 +02:00
"get-stream": "^4.0.0",
"index-modules": "^0.3.0",
"rimraf": "^2.6.2"
},
2016-08-15 18:56:33 +02:00
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"clean": "rimraf dist/",
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
2018-02-05 14:15:57 +01:00
"prebuild": "yarn run clean",
"predev": "yarn run clean",
"prepare": "yarn run build"
}
}