88 lines
2.0 KiB
JSON
88 lines
2.0 KiB
JSON
{
|
|
"name": "vhd-cli",
|
|
"version": "0.0.0",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"keywords": [],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/vhd-cli",
|
|
"bugs": "https://github.com/vatesfr/xo-web/issues",
|
|
"repository": {
|
|
"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": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"@nraynaud/struct-fu": "^1.0.1",
|
|
"@nraynaud/xo-fs": "^0.0.5",
|
|
"babel-runtime": "^6.22.0",
|
|
"exec-promise": "^0.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-plugin-lodash": "^3.2.11",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-env": "^1.5.2",
|
|
"babel-preset-stage-3": "^6.24.1",
|
|
"cross-env": "^5.0.1",
|
|
"dependency-check": "^2.9.1",
|
|
"jest": "^20.0.4",
|
|
"rimraf": "^2.6.1",
|
|
"standard": "^10.0.2"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"commitmsg": "npm test",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"dev-test": "jest --bail --watch",
|
|
"posttest": "standard && dependency-check ./package.json",
|
|
"prebuild": "rimraf dist/",
|
|
"predev": "npm run prebuild",
|
|
"prepublish": "npm run build",
|
|
"test": "jest"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"lodash",
|
|
"transform-runtime"
|
|
],
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": 4
|
|
}
|
|
}
|
|
],
|
|
"stage-3"
|
|
]
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"testRegex": "\\.spec\\.js$"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist"
|
|
],
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|