Files
xen-orchestra/package.json

100 lines
2.2 KiB
JSON
Raw Normal View History

2016-10-31 16:27:15 +01:00
{
2016-10-31 16:29:36 +01:00
"name": "xapi-explore-sr",
2017-03-30 16:51:27 +02:00
"version": "0.0.4",
2016-10-31 16:27:15 +01:00
"license": "ISC",
2016-10-31 16:31:59 +01:00
"description": "Display the list of VDIs (unmanaged and snapshots included) of a SR",
2016-10-31 16:29:36 +01:00
"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",
2016-10-31 16:27:15 +01:00
"repository": {
"type": "git",
2016-10-31 16:29:36 +01:00
"url": "https://github.com/vatesfr/xapi-explore-sr.git"
2016-10-31 16:27:15 +01:00
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
2016-10-31 16:29:36 +01:00
"preferGlobal": true,
2016-10-31 16:27:15 +01:00
"main": "dist/",
2016-10-31 16:29:36 +01:00
"bin": {
2016-10-31 16:37:36 +01:00
"xapi-explore-sr": "dist/index.js"
2016-10-31 16:29:36 +01:00
},
2016-10-31 16:27:15 +01:00
"files": [
"dist/"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"archy": "^1.0.0",
"babel-runtime": "^6.23.0",
2016-10-31 16:27:15 +01:00
"chalk": "^1.1.3",
"exec-promise": "^0.7.0",
"lodash": "^4.17.4",
2016-10-31 16:27:15 +01:00
"pw": "^0.0.4",
"xen-api": "^0.10.0"
2016-10-31 16:27:15 +01:00
},
"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.4.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^4.0.0",
"dependency-check": "^2.8.0",
"husky": "^0.13.3",
"jest": "^20.0.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
2016-10-31 16:27:15 +01:00
},
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"commitmsg": "npm test",
2016-10-31 16:27:15 +01:00
"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"
2016-10-31 16:27:15 +01:00
},
"babel": {
"plugins": [
"lodash",
"transform-runtime"
],
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"stage-3"
2016-10-31 16:27:15 +01:00
]
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testRegex": "\\.spec\\.js$"
},
2016-10-31 16:27:15 +01:00
"standard": {
"ignore": [
"dist"
],
"parser": "babel-eslint"
}
}