{ "name": "xapi-explore-sr", "version": "0.0.3", "license": "ISC", "description": "Display the list of VDIs (unmanaged and snapshots included) of a SR", "keywords": [ "api", "sr", "vdi", "vdis", "xen", "xen-api", "xenapi" ], "homepage": "https://github.com/vatesfr/xapi-explore-sr", "bugs": "https://github.com/vatesfr/xapi-explore-sr/issues", "repository": { "type": "git", "url": "https://github.com/vatesfr/xapi-explore-sr.git" }, "author": { "name": "Julien Fontanet", "email": "julien.fontanet@isonoe.net" }, "preferGlobal": true, "main": "dist/", "bin": { "xapi-explore-sr": "dist/index.js" }, "files": [ "dist/" ], "engines": { "node": ">=4" }, "dependencies": { "archy": "^1.0.0", "babel-runtime": "^6.20.0", "chalk": "^1.1.3", "exec-promise": "^0.6.1", "lodash": "^4.16.5", "pw": "^0.0.4", "xen-api": "^0.9.4" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-eslint": "^7.1.1", "babel-plugin-lodash": "^3.2.11", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-env": "^1.1.8", "babel-preset-stage-3": "^6.17.0", "cross-env": "^3.1.4", "dependency-check": "^2.7.0", "husky": "^0.12.0", "jest": "^19.0.1", "rimraf": "^2.5.4", "standard": "^8.6.0" }, "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": [ "/src" ], "testRegex": "\\.spec\\.js$" }, "standard": { "ignore": [ "dist" ], "parser": "babel-eslint" } }